diff --git a/app/backend/lib/excel_import/cbc_project.ts b/app/backend/lib/excel_import/cbc_project.ts index b90de53d04..11a4c3f3de 100644 --- a/app/backend/lib/excel_import/cbc_project.ts +++ b/app/backend/lib/excel_import/cbc_project.ts @@ -19,6 +19,18 @@ const createCbcProjectMutation = ` } `; +const createPendingChangeRequestMutation = ` + mutation createPendingChangeRequestMutation( + $input: CreatePendingChangeRequestInput! + ) { + createPendingChangeRequest(input: $input) { + applicationPendingChangeRequest { + isPending + comment + } + } + }`; + const findCbcQuery = ` query findCbc($projectNumber: Int!) { cbcByProjectNumber (projectNumber: $projectNumber) { @@ -32,6 +44,16 @@ const findCbcQuery = ` sharepointTimestamp } } + applicationPendingChangeRequestsByCbcId( + orderBy: CREATED_AT_DESC + first: 1 + ) { + nodes { + isPending + updatedAt + cbcId + } + } } } `; @@ -308,6 +330,7 @@ const LoadCbcProjectData = async (wb, sheet, sharepointTimestamp, req) => { }, req ); + let createCbcResult = null; if ( findCbcProject.data?.cbcByProjectNumber?.cbcDataByProjectNumber?.nodes .length > 0 @@ -329,7 +352,7 @@ const LoadCbcProjectData = async (wb, sheet, sharepointTimestamp, req) => { ); } else { // create cbc - const createCbcResult = await performQuery( + createCbcResult = await performQuery( createCbcMutation, { input: { @@ -357,6 +380,39 @@ const LoadCbcProjectData = async (wb, sheet, sharepointTimestamp, req) => { req ); } + let changeRequestInput = null; + const existingChangeRequest = + findCbcProject.data?.cbcByProjectNumber + ?.applicationPendingChangeRequestsByCbcId?.nodes?.[0]; + + if (existingChangeRequest) { + // If existing change request is different from the spreadsheet import override + if ( + existingChangeRequest.isPending !== + (project.changeRequestPending === 'Yes') + ) { + changeRequestInput = { + _cbcId: existingChangeRequest.cbcId, + _isPending: project.changeRequestPending === 'Yes', + _comment: null, + }; + } + } else if (project.changeRequestPending === 'Yes') { + // Only persist change request if it is pending + changeRequestInput = { + _cbcId: createCbcResult.data.createCbc?.cbc?.rowId, + _isPending: true, + _comment: null, + }; + } + if (changeRequestInput !== null) + await performQuery( + createPendingChangeRequestMutation, + { + input: changeRequestInput, + }, + req + ); }); return { diff --git a/app/components/Analyst/ApplicationHeader.tsx b/app/components/Analyst/ApplicationHeader.tsx index 0fbf481315..6b3d1dcbe4 100644 --- a/app/components/Analyst/ApplicationHeader.tsx +++ b/app/components/Analyst/ApplicationHeader.tsx @@ -118,7 +118,7 @@ const ApplicationHeader: React.FC = ({ query }) => { ...AssignPackage_query ...EditProjectDescription_query ...AssignProjectType_query - ...PendingChangeRequest_query + ...PendingChangeRequest_query_application } ...AssignLead_query allApplicationStatusTypes( diff --git a/app/components/Analyst/CBC/CbcHeader.tsx b/app/components/Analyst/CBC/CbcHeader.tsx index 73fa5f9a60..fcba69773e 100644 --- a/app/components/Analyst/CBC/CbcHeader.tsx +++ b/app/components/Analyst/CBC/CbcHeader.tsx @@ -2,6 +2,7 @@ import styled from 'styled-components'; import { graphql, useFragment } from 'react-relay'; import CbcChangeStatus from './CbcChangeStatus'; import AssignField from './AssignField'; +import PendingChangeRequest from '../PendingChangeRequest/PendingChangeRequest'; const StyledCallout = styled.div` margin-bottom: 0.5em; @@ -33,7 +34,7 @@ const StyledDiv = styled.div` `; const StyledLabel = styled.label` - min-width: 130px; + min-width: 210px; color: ${(props) => props.theme.color.components}; padding-right: 1rem; direction: rtl; @@ -49,6 +50,10 @@ const StyledAssign = styled(StyledItem)` margin: 8px 0 0 0; `; +const StyledPendingChangeRequests = styled(StyledItem)` + margin: 8px 0; +`; + interface Props { query: any; } @@ -75,6 +80,7 @@ const CbcHeader: React.FC = ({ query }) => { } ...CbcChangeStatus_query ...AssignField_query + ...PendingChangeRequest_query_cbc } } `, @@ -133,6 +139,12 @@ const CbcHeader: React.FC = ({ query }) => { cbc={cbcByRowId} /> + + + Pending Change Request + + + ); diff --git a/app/components/Analyst/PendingChangeRequest/PendingChangeRequest.tsx b/app/components/Analyst/PendingChangeRequest/PendingChangeRequest.tsx index 0fd3fe52d8..769c1d8aae 100644 --- a/app/components/Analyst/PendingChangeRequest/PendingChangeRequest.tsx +++ b/app/components/Analyst/PendingChangeRequest/PendingChangeRequest.tsx @@ -1,7 +1,7 @@ +import React, { useState } from 'react'; import { graphql, useFragment } from 'react-relay'; import { useCreatePendingChangeRequestMutation } from 'schema/mutations/application/createPendingChangeRequest'; import styled from 'styled-components'; -import { useState } from 'react'; import useModal from 'lib/helpers/useModal'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faCommentDots } from '@fortawesome/free-solid-svg-icons'; @@ -19,39 +19,51 @@ const StyledFontAwesomeIcon = styled(FontAwesomeIcon)` margin-left: 8px; `; -const PendingChangeRequest = ({ application }) => { - const queryFragment = useFragment( - graphql` - fragment PendingChangeRequest_query on Application { - rowId - applicationPendingChangeRequestsByApplicationId( - orderBy: CREATED_AT_DESC - first: 1 - ) { - nodes { - comment - isPending +const PendingChangeRequest = ({ application, isCbc = false }) => { + const fragment = isCbc + ? graphql` + fragment PendingChangeRequest_query_cbc on Cbc { + rowId + applicationPendingChangeRequestsByCbcId( + orderBy: CREATED_AT_DESC + first: 1 + ) { + nodes { + comment + isPending + } } } - } - `, - application - ); + ` + : graphql` + fragment PendingChangeRequest_query_application on Application { + rowId + applicationPendingChangeRequestsByApplicationId( + orderBy: CREATED_AT_DESC + first: 1 + ) { + nodes { + comment + isPending + } + } + } + `; + + const queryFragment = useFragment(fragment, application); const pendingChangeRequestModal = useModal(); const closePendingRequestModal = useModal(); - const { applicationPendingChangeRequestsByApplicationId, rowId } = - queryFragment; + const pendingRequests = isCbc + ? queryFragment?.applicationPendingChangeRequestsByCbcId + : queryFragment?.applicationPendingChangeRequestsByApplicationId; const [isPending, setIsPending] = useState( - applicationPendingChangeRequestsByApplicationId?.nodes?.[0]?.isPending || - false + pendingRequests?.nodes?.[0]?.isPending || false ); const [comment, setComment] = useState( - isPending - ? applicationPendingChangeRequestsByApplicationId?.nodes?.[0]?.comment - : null + isPending ? pendingRequests?.nodes?.[0]?.comment : null ); const [isUpdateMode, setIsUpdateMode] = useState(false); @@ -68,10 +80,13 @@ const PendingChangeRequest = ({ application }) => { isPendingRequest: boolean, reasonForChange: string ) => { + const rowParam = isCbc + ? { _cbcId: queryFragment.rowId } + : { _applicationId: queryFragment.rowId }; createPendingChangeRequest({ variables: { input: { - _applicationId: rowId, + ...rowParam, _isPending: isPendingRequest, _comment: reasonForChange, }, diff --git a/app/formSchema/analyst/cbc/tombstone.ts b/app/formSchema/analyst/cbc/tombstone.ts index 1c9b8558dd..d919baf26c 100644 --- a/app/formSchema/analyst/cbc/tombstone.ts +++ b/app/formSchema/analyst/cbc/tombstone.ts @@ -27,10 +27,6 @@ const cbcTombstone: RJSFSchema = { type: 'string', title: 'Project Status', }, - changeRequestPending: { - type: 'boolean', - title: 'Change Request Pending', - }, projectTitle: { type: 'string', title: 'Project Title', diff --git a/app/pages/analyst/cbc/[cbcId].tsx b/app/pages/analyst/cbc/[cbcId].tsx index f6f913b172..5eb088cc74 100644 --- a/app/pages/analyst/cbc/[cbcId].tsx +++ b/app/pages/analyst/cbc/[cbcId].tsx @@ -80,7 +80,6 @@ const Cbc = ({ phase: jsonData.phase, intake: jsonData.intake, projectStatus: jsonData.projectStatus, - changeRequestPending: jsonData.changeRequestPending, projectTitle: jsonData.projectTitle, projectDescription: jsonData.projectDescription, applicantContractualName: jsonData.applicantContractualName, diff --git a/app/schema/schema.graphql b/app/schema/schema.graphql index 43d99bd830..d2d9540749 100644 --- a/app/schema/schema.graphql +++ b/app/schema/schema.graphql @@ -191,7 +191,9 @@ type Query implements Node { filter: ApplicationAnnouncementFilter ): ApplicationAnnouncementsConnection - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + """ + Reads and enables pagination through a set of `ApplicationClaimsData`. + """ allApplicationClaimsData( """Only read the first `n` values of the set.""" first: Int @@ -321,7 +323,9 @@ type Query implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + """ + The method to use when ordering `ApplicationCommunityReportExcelData`. + """ orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ @@ -1843,7 +1847,9 @@ type Query implements Node { id: ID! ): ApplicationAnnouncement - """Reads a single `ApplicationClaimsData` using its globally unique `ID`.""" + """ + Reads a single `ApplicationClaimsData` using its globally unique `ID`. + """ applicationClaimsData( """ The globally unique `ID` to be used in selecting a single `ApplicationClaimsData`. @@ -2493,76 +2499,8 @@ type CcbcUser implements Node { """Reads a single `CcbcUser` that is related to this `CcbcUser`.""" ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUsersConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUsersConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2581,22 +2519,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2615,22 +2553,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: ApplicationFilter + ): ApplicationsConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -2649,22 +2587,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: ApplicationFilter + ): ApplicationsConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2683,22 +2621,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2717,22 +2655,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -2751,22 +2689,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByArchivedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2785,22 +2723,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2819,22 +2757,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -2853,22 +2791,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2887,22 +2827,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2921,22 +2863,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -2955,22 +2899,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -2989,22 +2933,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3038,7 +2982,7 @@ type CcbcUser implements Node { ): FormDataConnection! """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3071,8 +3015,8 @@ type CcbcUser implements Node { filter: FormDataFilter ): FormDataConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3091,22 +3035,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3125,22 +3069,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3159,22 +3103,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByArchivedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3193,24 +3139,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByCreatedBy( + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3229,24 +3175,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByUpdatedBy( + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3265,24 +3211,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByArchivedBy( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3301,22 +3245,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: RfiDataFilter + ): RfiDataConnection! """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByCreatedBy( + rfiDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3350,7 +3294,7 @@ type CcbcUser implements Node { ): RfiDataConnection! """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByUpdatedBy( + rfiDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3383,8 +3327,8 @@ type CcbcUser implements Node { filter: RfiDataFilter ): RfiDataConnection! - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3403,22 +3347,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: IntakeFilter + ): IntakesConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3437,22 +3381,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3471,22 +3415,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: IntakeFilter + ): IntakesConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsData`. + """ + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3505,22 +3451,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsData`. + """ + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3539,22 +3487,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsData`. + """ + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3573,22 +3523,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3607,22 +3559,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! - """Reads and enables pagination through a set of `RecordVersion`.""" - recordVersionsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3641,24 +3595,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RecordVersion`.""" - orderBy: [RecordVersionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RecordVersionCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RecordVersionFilter - ): RecordVersionsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - conditionalApprovalDataByCreatedBy( + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3677,24 +3631,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - conditionalApprovalDataByUpdatedBy( + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3713,24 +3667,26 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - conditionalApprovalDataByArchivedBy( + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3749,22 +3705,26 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3783,22 +3743,26 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3817,22 +3781,26 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityReportExcelData`. + """ + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3851,22 +3819,26 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityReportExcelData`. + """ + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3885,22 +3857,26 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityReportExcelData`. + """ + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3919,22 +3895,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -3953,22 +3931,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -3987,22 +3967,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4021,22 +4003,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4055,24 +4039,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnnouncementsByCreatedBy( + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4091,24 +4075,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnnouncementsByUpdatedBy( + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4127,24 +4111,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnnouncementsByArchivedBy( + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4163,22 +4147,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4197,22 +4183,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4246,7 +4232,7 @@ type CcbcUser implements Node { ): ApplicationSowDataConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4279,8 +4265,8 @@ type CcbcUser implements Node { filter: ApplicationSowDataFilter ): ApplicationSowDataConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4299,22 +4285,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4333,22 +4319,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4367,22 +4353,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByCreatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4401,22 +4387,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4435,22 +4421,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4469,24 +4455,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4505,24 +4489,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4541,24 +4523,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: NotificationFilter + ): NotificationsConnection! - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4577,22 +4557,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: NotificationFilter + ): NotificationsConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4611,22 +4591,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: NotificationFilter + ): NotificationsConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4645,22 +4625,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4679,22 +4659,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4713,22 +4693,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4747,22 +4729,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4781,22 +4765,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4815,22 +4801,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4849,22 +4835,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4883,24 +4869,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -4919,26 +4903,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4957,26 +4937,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -4995,26 +4971,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5033,24 +5005,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5069,24 +5039,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5105,22 +5073,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: GisDataFilter + ): GisDataConnection! - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5139,22 +5107,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: GisDataFilter + ): GisDataConnection! - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5173,22 +5141,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AnalystFilter + ): AnalystsConnection! - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5207,24 +5175,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: AnalystFilter + ): AnalystsConnection! - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByCreatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5243,24 +5209,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: AnalystFilter + ): AnalystsConnection! """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationClaimsExcelDataByUpdatedBy( + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5279,24 +5245,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationClaimsExcelDataByArchivedBy( + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5315,24 +5281,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationMilestoneDataByCreatedBy( + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5351,24 +5317,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByUpdatedBy( + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5387,24 +5353,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByArchivedBy( + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5423,24 +5389,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneExcelDataByCreatedBy( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5459,24 +5425,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5495,24 +5459,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5531,22 +5493,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5565,22 +5527,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5599,22 +5561,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5633,24 +5595,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5669,24 +5629,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByUpdatedBy( + """Reads and enables pagination through a set of `RecordVersion`.""" + recordVersionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5705,24 +5663,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RecordVersion`.""" + orderBy: [RecordVersionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: RecordVersionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: RecordVersionFilter + ): RecordVersionsConnection! - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5741,24 +5697,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5777,24 +5731,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab1Filter + ): SowTab1SConnection! - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5813,24 +5765,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab1Filter + ): SowTab1SConnection! - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5849,22 +5799,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5883,22 +5833,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -5917,22 +5867,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5951,22 +5901,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5985,22 +5935,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6019,22 +5969,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6053,24 +6003,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6089,24 +6037,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6125,24 +6071,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! """ Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationPendingChangeRequestsByArchivedBy( + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6175,8 +6121,10 @@ type CcbcUser implements Node { filter: ApplicationPendingChangeRequestFilter ): ApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6195,22 +6143,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6229,22 +6179,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! """Reads and enables pagination through a set of `Cbc`.""" - cbcsByArchivedBy( + cbcsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6277,8 +6227,8 @@ type CcbcUser implements Node { filter: CbcFilter ): CbcsConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6297,22 +6247,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CbcFilter + ): CbcsConnection! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6331,22 +6281,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: CbcFilter + ): CbcsConnection! """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByArchivedBy( + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6379,8 +6329,8 @@ type CcbcUser implements Node { filter: CbcDataFilter ): CbcDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6399,22 +6349,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection! + filter: CbcDataFilter + ): CbcDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6433,22 +6383,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection! + filter: CbcDataFilter + ): CbcDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationCreatedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -6467,22 +6417,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection! + filter: IntakeFilter + ): CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserUpdatedByAndArchivedBy( + ccbcUsersByApplicationCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6513,10 +6463,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserArchivedByAndCreatedBy( + ccbcUsersByApplicationCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6547,10 +6497,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationUpdatedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -6569,22 +6519,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection! + filter: IntakeFilter + ): CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCreatedByAndUpdatedBy( + ccbcUsersByApplicationUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6615,10 +6565,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCreatedByAndArchivedBy( + ccbcUsersByApplicationUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6649,10 +6599,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeCreatedByAndCounterId( + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationArchivedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -6671,22 +6621,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GaplessCounter`.""" - orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GaplessCounterCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection! + filter: IntakeFilter + ): CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeUpdatedByAndCreatedBy( + ccbcUsersByApplicationArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6717,10 +6667,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeUpdatedByAndArchivedBy( + ccbcUsersByApplicationArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6751,10 +6701,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeUpdatedByAndCounterId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAssessmentDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -6773,22 +6723,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GaplessCounter`.""" - orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GaplessCounterCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataCreatedByAndAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -6807,22 +6757,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection! + filter: AssessmentTypeFilter + ): CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeArchivedByAndUpdatedBy( + ccbcUsersByAssessmentDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6853,78 +6803,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeArchivedByAndCounterId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `GaplessCounter`.""" - orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: GaplessCounterCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection! - - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationCreatedByAndIntakeId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: IntakeCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: IntakeFilter - ): CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCreatedByAndUpdatedBy( + ccbcUsersByAssessmentDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6955,10 +6837,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAssessmentDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -6977,22 +6859,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationUpdatedByAndIntakeId( + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataUpdatedByAndAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -7011,22 +6893,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection! + filter: AssessmentTypeFilter + ): CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationUpdatedByAndCreatedBy( + ccbcUsersByAssessmentDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7057,10 +6939,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationUpdatedByAndArchivedBy( + ccbcUsersByAssessmentDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7091,10 +6973,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationArchivedByAndIntakeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAssessmentDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7113,22 +6995,56 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataArchivedByAndAssessmentDataType( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentTypeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentTypeFilter + ): CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationArchivedByAndCreatedBy( + ccbcUsersByAssessmentDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7159,10 +7075,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationArchivedByAndUpdatedBy( + ccbcUsersByAssessmentDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7193,10 +7109,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnnouncementCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7215,22 +7131,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusCreatedByAndStatus( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnnouncementCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7249,22 +7165,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusCreatedByAndArchivedBy( + ccbcUsersByAnnouncementUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7295,10 +7211,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusCreatedByAndUpdatedBy( + ccbcUsersByAnnouncementUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7329,10 +7245,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnnouncementArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7351,22 +7267,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusArchivedByAndStatus( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnnouncementArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7385,22 +7301,56 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByConditionalApprovalDataCreatedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusArchivedByAndCreatedBy( + ccbcUsersByConditionalApprovalDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7431,10 +7381,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusArchivedByAndUpdatedBy( + ccbcUsersByConditionalApprovalDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7465,10 +7415,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusUpdatedByAndApplicationId( + applicationsByConditionalApprovalDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7499,10 +7449,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusUpdatedByAndStatus( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7521,22 +7471,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusUpdatedByAndCreatedBy( + ccbcUsersByConditionalApprovalDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7567,10 +7517,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByConditionalApprovalDataArchivedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusUpdatedByAndArchivedBy( + ccbcUsersByConditionalApprovalDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7601,10 +7585,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7623,22 +7607,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentCreatedByAndApplicationStatusId( + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -7657,22 +7641,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: FormDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection! + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentCreatedByAndUpdatedBy( + ccbcUsersByFormDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7703,10 +7687,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentCreatedByAndArchivedBy( + ccbcUsersByFormDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7737,10 +7721,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataCreatedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -7759,22 +7743,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: FormCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentUpdatedByAndApplicationStatusId( + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -7793,22 +7777,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: FormDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection! + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentUpdatedByAndCreatedBy( + ccbcUsersByFormDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7839,10 +7823,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentUpdatedByAndArchivedBy( + ccbcUsersByFormDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7873,44 +7857,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentArchivedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentArchivedByAndApplicationStatusId( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataUpdatedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -7929,22 +7879,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: FormCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -7963,22 +7913,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: FormDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection! + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentArchivedByAndUpdatedBy( + ccbcUsersByFormDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8009,44 +7959,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataStatusTypeCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataCreatedByAndUpdatedBy( + ccbcUsersByFormDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8077,10 +7993,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataArchivedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -8099,22 +8015,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: FormCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataCreatedByAndFormSchemaId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataCreatedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -8133,22 +8049,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormFilter - ): CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8167,22 +8083,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationGisDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8213,10 +8129,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationGisDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8247,10 +8163,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataUpdatedByAndFormSchemaId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataUpdatedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -8269,22 +8185,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormFilter - ): CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8303,22 +8219,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataArchivedByAndCreatedBy( + ccbcUsersByApplicationGisDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8349,10 +8265,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationGisDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8383,10 +8299,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataArchivedByAndFormSchemaId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataArchivedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -8405,22 +8321,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormFilter - ): CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8439,22 +8355,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystCreatedByAndArchivedBy( + ccbcUsersByApplicationGisDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8485,10 +8401,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystUpdatedByAndCreatedBy( + ccbcUsersByApplicationGisDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8519,10 +8435,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByProjectInformationDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8541,22 +8457,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystArchivedByAndCreatedBy( + ccbcUsersByProjectInformationDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8587,10 +8503,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystArchivedByAndUpdatedBy( + ccbcUsersByProjectInformationDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8621,10 +8537,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadCreatedByAndApplicationId( + applicationsByProjectInformationDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8655,44 +8571,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadCreatedByAndAnalystId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AnalystCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnalystFilter - ): CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection! + ): CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadCreatedByAndUpdatedBy( + ccbcUsersByProjectInformationDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8723,10 +8605,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadCreatedByAndArchivedBy( + ccbcUsersByProjectInformationDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8757,10 +8639,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadUpdatedByAndApplicationId( + applicationsByProjectInformationDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8791,44 +8673,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadUpdatedByAndAnalystId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AnalystCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnalystFilter - ): CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection! + ): CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadUpdatedByAndCreatedBy( + ccbcUsersByProjectInformationDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8859,10 +8707,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadUpdatedByAndArchivedBy( + ccbcUsersByProjectInformationDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8893,44 +8741,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadArchivedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadArchivedByAndAnalystId( + """Reads and enables pagination through a set of `RfiDataStatusType`.""" + rfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -8949,22 +8763,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiDataStatusType`.""" + orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: RfiDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection! + filter: RfiDataStatusTypeFilter + ): CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadArchivedByAndCreatedBy( + ccbcUsersByRfiDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8995,10 +8809,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadArchivedByAndUpdatedBy( + ccbcUsersByRfiDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9029,10 +8843,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeId( + rfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -9063,10 +8877,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: RfiDataStatusTypeFilter - ): CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyConnection! + ): CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataCreatedByAndUpdatedBy( + ccbcUsersByRfiDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9097,10 +8911,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataCreatedByAndArchivedBy( + ccbcUsersByRfiDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9131,10 +8945,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeId( + rfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -9165,44 +8979,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: RfiDataStatusTypeFilter - ): CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataUpdatedByAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataUpdatedByAndArchivedBy( + ccbcUsersByRfiDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9233,44 +9013,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `RfiDataStatusType`.""" - orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: RfiDataStatusTypeCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: RfiDataStatusTypeFilter - ): CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataArchivedByAndCreatedBy( + ccbcUsersByRfiDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9301,10 +9047,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataArchivedByAndUpdatedBy( + ccbcUsersByIntakeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9335,10 +9081,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9357,22 +9103,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataCreatedByAndAssessmentDataType( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeCreatedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -9391,22 +9137,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataCreatedByAndUpdatedBy( + ccbcUsersByIntakeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9437,10 +9183,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataCreatedByAndArchivedBy( + ccbcUsersByIntakeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9471,44 +9217,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataUpdatedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataUpdatedByAndAssessmentDataType( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeUpdatedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -9527,22 +9239,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataUpdatedByAndCreatedBy( + ccbcUsersByIntakeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9573,10 +9285,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataUpdatedByAndArchivedBy( + ccbcUsersByIntakeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9607,10 +9319,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeArchivedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -9629,22 +9341,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataArchivedByAndAssessmentDataType( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationClaimsDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9663,22 +9375,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataArchivedByAndCreatedBy( + ccbcUsersByApplicationClaimsDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9709,10 +9421,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationClaimsDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9743,10 +9455,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageCreatedByAndApplicationId( + applicationsByApplicationClaimsDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9777,10 +9489,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageCreatedByAndUpdatedBy( + ccbcUsersByApplicationClaimsDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9811,10 +9523,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageCreatedByAndArchivedBy( + ccbcUsersByApplicationClaimsDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9845,10 +9557,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageUpdatedByAndApplicationId( + applicationsByApplicationClaimsDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9879,10 +9591,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageUpdatedByAndCreatedBy( + ccbcUsersByApplicationClaimsDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9913,10 +9625,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageUpdatedByAndArchivedBy( + ccbcUsersByApplicationClaimsDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9947,10 +9659,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageArchivedByAndApplicationId( + applicationsByApplicationClaimsExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9981,10 +9693,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageArchivedByAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10015,10 +9727,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageArchivedByAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10049,10 +9761,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataCreatedByAndApplicationId( + applicationsByApplicationClaimsExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10083,10 +9795,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10117,10 +9829,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataCreatedByAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10151,10 +9863,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataUpdatedByAndApplicationId( + applicationsByApplicationClaimsExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10185,10 +9897,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10219,10 +9931,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10253,10 +9965,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataArchivedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10287,10 +9999,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataArchivedByAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10321,10 +10033,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10355,10 +10067,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10377,22 +10089,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataCreatedByAndArchivedBy( + ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10423,10 +10135,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10457,10 +10169,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10479,22 +10191,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataArchivedByAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10525,10 +10237,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10559,10 +10271,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataCreatedByAndBatchId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10581,22 +10293,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10615,22 +10327,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10661,10 +10373,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10683,22 +10395,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataUpdatedByAndBatchId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10717,22 +10429,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10751,22 +10463,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10785,22 +10497,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10831,10 +10543,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataArchivedByAndBatchId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10853,22 +10565,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataArchivedByAndApplicationId( + applicationsByApplicationInternalDescriptionCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10899,10 +10611,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataArchivedByAndCreatedBy( + ccbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10933,10 +10645,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationInternalDescriptionCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10967,10 +10679,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationInternalDescriptionUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10989,22 +10701,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementCreatedByAndArchivedBy( + ccbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11035,10 +10747,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementUpdatedByAndCreatedBy( + ccbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11069,10 +10781,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationInternalDescriptionArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11091,22 +10803,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementArchivedByAndCreatedBy( + ccbcUsersByApplicationInternalDescriptionArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11137,10 +10849,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementArchivedByAndUpdatedBy( + ccbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11171,10 +10883,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementCreatedByAndAnnouncementId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11193,22 +10905,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11227,22 +10939,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementCreatedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11273,10 +10985,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneDataUpdatedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementCreatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11307,10 +11053,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementUpdatedByAndAnnouncementId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11329,22 +11075,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementUpdatedByAndApplicationId( + applicationsByApplicationMilestoneDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11375,10 +11121,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementUpdatedByAndCreatedBy( + ccbcUsersByApplicationMilestoneDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11409,10 +11155,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementUpdatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11443,10 +11189,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementArchivedByAndAnnouncementId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11465,22 +11211,90 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementArchivedByAndApplicationId( + applicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11511,10 +11325,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementArchivedByAndCreatedBy( + ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11545,10 +11359,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementArchivedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11579,10 +11393,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataCreatedByAndApplicationId( + applicationsByApplicationMilestoneExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11613,10 +11427,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11647,10 +11461,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataCreatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11681,10 +11495,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataUpdatedByAndApplicationId( + applicationsByApplicationSowDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11715,10 +11529,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationSowDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11749,10 +11563,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationSowDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11783,10 +11597,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataArchivedByAndApplicationId( + applicationsByApplicationSowDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11817,10 +11631,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataArchivedByAndCreatedBy( + ccbcUsersByApplicationSowDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11851,10 +11665,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationSowDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11885,10 +11699,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2CreatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationSowDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11907,22 +11721,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2CreatedByAndUpdatedBy( + ccbcUsersByApplicationSowDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11953,10 +11767,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2CreatedByAndArchivedBy( + ccbcUsersByApplicationSowDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11987,10 +11801,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2UpdatedByAndSowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12009,22 +11823,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2UpdatedByAndCreatedBy( + ccbcUsersByCbcProjectCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12055,10 +11869,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2UpdatedByAndArchivedBy( + ccbcUsersByCbcProjectUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12089,10 +11903,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2ArchivedByAndSowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12111,22 +11925,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2ArchivedByAndCreatedBy( + ccbcUsersByCbcProjectArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12157,10 +11971,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2ArchivedByAndUpdatedBy( + ccbcUsersByCbcProjectArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12191,10 +12005,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1CreatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByChangeRequestDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12213,22 +12027,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1CreatedByAndUpdatedBy( + ccbcUsersByChangeRequestDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12259,10 +12073,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1CreatedByAndArchivedBy( + ccbcUsersByChangeRequestDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12293,10 +12107,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1UpdatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByChangeRequestDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12315,22 +12129,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1UpdatedByAndCreatedBy( + ccbcUsersByChangeRequestDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12361,10 +12175,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1UpdatedByAndArchivedBy( + ccbcUsersByChangeRequestDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12395,10 +12209,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1ArchivedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByChangeRequestDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12417,22 +12231,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1ArchivedByAndCreatedBy( + ccbcUsersByChangeRequestDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12463,10 +12277,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1ArchivedByAndUpdatedBy( + ccbcUsersByChangeRequestDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12497,10 +12311,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataCreatedByAndApplicationId( + applicationsByNotificationCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12531,10 +12345,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationCreatedByAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -12553,22 +12367,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection! + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataCreatedByAndArchivedBy( + ccbcUsersByNotificationCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12599,10 +12413,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12621,22 +12435,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByNotificationUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12655,22 +12469,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationUpdatedByAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -12689,22 +12503,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection! + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12723,22 +12537,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataArchivedByAndCreatedBy( + ccbcUsersByNotificationUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12769,10 +12583,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByNotificationArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12791,22 +12605,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7CreatedByAndSowId( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationArchivedByAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -12825,22 +12639,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection! + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7CreatedByAndUpdatedBy( + ccbcUsersByNotificationArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12871,10 +12685,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7CreatedByAndArchivedBy( + ccbcUsersByNotificationArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12905,10 +12719,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7UpdatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPackageCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12927,22 +12741,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7UpdatedByAndCreatedBy( + ccbcUsersByApplicationPackageCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12973,10 +12787,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7UpdatedByAndArchivedBy( + ccbcUsersByApplicationPackageCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13007,10 +12821,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7ArchivedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPackageUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13029,22 +12843,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7ArchivedByAndCreatedBy( + ccbcUsersByApplicationPackageUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13075,10 +12889,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7ArchivedByAndUpdatedBy( + ccbcUsersByApplicationPackageUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13109,10 +12923,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8CreatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPackageArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13131,22 +12945,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8CreatedByAndUpdatedBy( + ccbcUsersByApplicationPackageArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13177,10 +12991,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8CreatedByAndArchivedBy( + ccbcUsersByApplicationPackageArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13211,10 +13025,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8UpdatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationProjectTypeCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13233,22 +13047,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8UpdatedByAndCreatedBy( + ccbcUsersByApplicationProjectTypeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13279,10 +13093,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8UpdatedByAndArchivedBy( + ccbcUsersByApplicationProjectTypeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13313,10 +13127,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8ArchivedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationProjectTypeUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13335,22 +13149,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8ArchivedByAndCreatedBy( + ccbcUsersByApplicationProjectTypeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13381,10 +13195,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8ArchivedByAndUpdatedBy( + ccbcUsersByApplicationProjectTypeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13415,10 +13229,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataCreatedByAndApplicationId( + applicationsByApplicationProjectTypeArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13449,10 +13263,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationProjectTypeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13483,10 +13297,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataCreatedByAndArchivedBy( + ccbcUsersByApplicationProjectTypeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13517,10 +13331,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCcbcUserCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13539,22 +13353,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataUpdatedByAndCreatedBy( + ccbcUsersByCcbcUserCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13585,10 +13399,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataUpdatedByAndArchivedBy( + ccbcUsersByCcbcUserUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13619,10 +13433,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCcbcUserUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13641,22 +13455,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataArchivedByAndCreatedBy( + ccbcUsersByCcbcUserArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13687,10 +13501,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataArchivedByAndUpdatedBy( + ccbcUsersByCcbcUserArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13721,10 +13535,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationId( + applicationsByAttachmentCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13755,10 +13569,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentCreatedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -13777,22 +13591,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationStatusFilter + ): CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedBy( + ccbcUsersByAttachmentCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13823,10 +13637,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13845,22 +13659,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13879,22 +13693,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentUpdatedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -13913,22 +13727,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationStatusFilter + ): CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13947,22 +13761,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedBy( + ccbcUsersByAttachmentUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13993,10 +13807,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14015,22 +13829,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentArchivedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -14049,22 +13863,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection! + filter: ApplicationStatusFilter + ): CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy( + ccbcUsersByAttachmentArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14095,10 +13909,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedBy( + ccbcUsersByAttachmentArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14129,10 +13943,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByGisDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14151,22 +13965,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy( + ccbcUsersByGisDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14197,10 +14011,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedBy( + ccbcUsersByGisDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14231,10 +14045,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByGisDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14253,22 +14067,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedBy( + ccbcUsersByGisDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14299,10 +14113,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedBy( + ccbcUsersByGisDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14333,10 +14147,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnalystCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14355,22 +14169,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataCreatedByAndUpdatedBy( + ccbcUsersByAnalystCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14401,10 +14215,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataCreatedByAndArchivedBy( + ccbcUsersByAnalystUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14435,10 +14249,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnalystUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14457,22 +14271,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataUpdatedByAndCreatedBy( + ccbcUsersByAnalystArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14503,10 +14317,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataUpdatedByAndArchivedBy( + ccbcUsersByAnalystArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14537,10 +14351,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataArchivedByAndApplicationId( + applicationsByApplicationAnalystLeadCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14571,10 +14385,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadCreatedByAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -14593,22 +14407,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection! + filter: AnalystFilter + ): CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationAnalystLeadCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14639,10 +14453,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14661,22 +14475,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnalystLeadUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14695,22 +14509,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadUpdatedByAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -14729,22 +14543,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection! + filter: AnalystFilter + ): CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14763,22 +14577,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationAnalystLeadUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14809,10 +14623,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnalystLeadArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14831,22 +14645,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadArchivedByAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -14865,22 +14679,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection! + filter: AnalystFilter + ): CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedBy( + ccbcUsersByApplicationAnalystLeadArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14911,10 +14725,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationAnalystLeadArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14945,10 +14759,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementCreatedByAndAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -14967,22 +14781,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection! + filter: AnnouncementFilter + ): CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnnouncementCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15001,22 +14815,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataCreatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncementCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15047,10 +14861,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15069,22 +14883,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementUpdatedByAndAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -15103,22 +14917,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection! + filter: AnnouncementFilter + ): CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnnouncementUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15137,22 +14951,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15171,22 +14985,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataArchivedByAndCreatedBy( + ccbcUsersByApplicationAnnouncementUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15217,10 +15031,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementArchivedByAndAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -15239,22 +15053,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection! + filter: AnnouncementFilter + ): CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataCreatedByAndApplicationId( + applicationsByApplicationAnnouncementArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15285,10 +15099,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationAnnouncementArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15319,10 +15133,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncementArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15353,10 +15167,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationId( + applicationsByApplicationStatusCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15387,10 +15201,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusCreatedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -15409,22 +15223,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationStatusTypeFilter + ): CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationStatusCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15455,10 +15269,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15477,22 +15291,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationStatusArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15511,22 +15325,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusArchivedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -15545,22 +15359,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection! + filter: ApplicationStatusTypeFilter + ): CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCreatedByAndUpdatedBy( + ccbcUsersByApplicationStatusArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15591,10 +15405,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCreatedByAndArchivedBy( + ccbcUsersByApplicationStatusArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15625,10 +15439,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationStatusUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15647,22 +15461,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusUpdatedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -15681,22 +15495,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationStatusTypeFilter + ): CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectArchivedByAndCreatedBy( + ccbcUsersByApplicationStatusUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15727,10 +15541,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectArchivedByAndUpdatedBy( + ccbcUsersByApplicationStatusUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15761,10 +15575,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByEmailRecordCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15783,22 +15597,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedBy( + ccbcUsersByEmailRecordCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15829,10 +15643,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionCreatedByAndArchivedBy( + ccbcUsersByEmailRecordUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15863,10 +15677,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByEmailRecordUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15885,22 +15699,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedBy( + ccbcUsersByEmailRecordArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15931,10 +15745,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedBy( + ccbcUsersByEmailRecordArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15965,10 +15779,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionArchivedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -15987,22 +15801,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionArchivedByAndCreatedBy( + ccbcUsersBySowTab1CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16033,10 +15847,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedBy( + ccbcUsersBySowTab1CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16067,10 +15881,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeCreatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -16089,22 +15903,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeCreatedByAndUpdatedBy( + ccbcUsersBySowTab1UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16135,10 +15949,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeCreatedByAndArchivedBy( + ccbcUsersBySowTab1UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16169,10 +15983,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -16191,22 +16005,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeUpdatedByAndCreatedBy( + ccbcUsersBySowTab1ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16237,10 +16051,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeUpdatedByAndArchivedBy( + ccbcUsersBySowTab1ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16271,10 +16085,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeArchivedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab2CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -16293,22 +16107,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeArchivedByAndCreatedBy( + ccbcUsersBySowTab2CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16339,10 +16153,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeArchivedByAndUpdatedBy( + ccbcUsersBySowTab2CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16373,10 +16187,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab2UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -16395,22 +16209,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordCreatedByAndArchivedBy( + ccbcUsersBySowTab2UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16441,10 +16255,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordUpdatedByAndCreatedBy( + ccbcUsersBySowTab2UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16475,10 +16289,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab2ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -16497,22 +16311,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordArchivedByAndCreatedBy( + ccbcUsersBySowTab2ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16543,10 +16357,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordArchivedByAndUpdatedBy( + ccbcUsersBySowTab2ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16577,10 +16391,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationCreatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab7CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -16599,22 +16413,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationCreatedByAndEmailRecordId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16633,22 +16447,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationCreatedByAndUpdatedBy( + ccbcUsersBySowTab7CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16679,10 +16493,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab7UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -16701,22 +16515,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16735,22 +16549,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationUpdatedByAndEmailRecordId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16769,22 +16583,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab7ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -16803,22 +16617,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationUpdatedByAndArchivedBy( + ccbcUsersBySowTab7ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16849,10 +16663,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16871,22 +16685,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationArchivedByAndEmailRecordId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -16905,22 +16719,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationArchivedByAndCreatedBy( + ccbcUsersBySowTab8CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16951,10 +16765,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationArchivedByAndUpdatedBy( + ccbcUsersBySowTab8CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16985,10 +16799,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestCreatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -17007,22 +16821,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedBy( + ccbcUsersBySowTab8UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17053,10 +16867,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedBy( + ccbcUsersBySowTab8UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17087,10 +16901,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -17109,22 +16923,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedBy( + ccbcUsersBySowTab8ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17155,10 +16969,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedBy( + ccbcUsersBySowTab8ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17189,10 +17003,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestArchivedByAndApplicationId( + applicationsByApplicationPendingChangeRequestCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -17223,10 +17037,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedBy( + ccbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17257,10 +17071,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedBy( + ccbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -17291,10 +17105,316 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByApplicationPendingChangeRequestCreatedByAndCbcId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CcbcUserCbcsByApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestUpdatedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcCreatedByAndUpdatedBy( + ccbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByApplicationPendingChangeRequestUpdatedByAndCbcId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CcbcUserCbcsByApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestArchivedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByApplicationPendingChangeRequestArchivedByAndCbcId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CcbcUserCbcsByApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -17906,3524 +18026,4064 @@ type CcbcUser implements Node { ): CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection! } -"""A connection to a list of `CcbcUser` values.""" -type CcbcUsersConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Application` values.""" +type ApplicationsConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser` and cursor to aid in pagination. + A list of edges which contains the `Application` and cursor to aid in pagination. """ - edges: [CcbcUsersEdge!]! + edges: [ApplicationsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection.""" -type CcbcUsersEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser -} - -"""A location in a connection that can be used for resuming pagination.""" -scalar Cursor - -"""Information about pagination in a connection.""" -type PageInfo { - """When paginating forwards, are there more items?""" - hasNextPage: Boolean! - - """When paginating backwards, are there more items?""" - hasPreviousPage: Boolean! - - """When paginating backwards, the cursor to continue.""" - startCursor: Cursor - - """When paginating forwards, the cursor to continue.""" - endCursor: Cursor -} - -"""Methods to use when ordering `CcbcUser`.""" -enum CcbcUsersOrderBy { - NATURAL - ID_ASC - ID_DESC - SESSION_SUB_ASC - SESSION_SUB_DESC - GIVEN_NAME_ASC - GIVEN_NAME_DESC - FAMILY_NAME_ASC - FAMILY_NAME_DESC - EMAIL_ADDRESS_ASC - EMAIL_ADDRESS_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - EXTERNAL_ANALYST_ASC - EXTERNAL_ANALYST_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - """ -A condition to be used against `CcbcUser` object types. All fields are tested -for equality and combined with a logical ‘and.’ +Table containing the data associated with the CCBC respondents application """ -input CcbcUserCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +type Application implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Checks for equality with the object’s `sessionSub` field.""" - sessionSub: String + """Primary key ID for the application""" + rowId: Int! - """Checks for equality with the object’s `givenName` field.""" - givenName: String + """Reference number assigned to the application""" + ccbcNumber: String - """Checks for equality with the object’s `familyName` field.""" - familyName: String + """The owner of the application, identified by its JWT sub""" + owner: String! - """Checks for equality with the object’s `emailAddress` field.""" - emailAddress: String + """The intake associated with the application, set when it is submitted""" + intakeId: Int - """Checks for equality with the object’s `createdBy` field.""" + """created by user id""" createdBy: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """created at timestamp""" + createdAt: Datetime! - """Checks for equality with the object’s `updatedBy` field.""" + """updated by user id""" updatedBy: Int - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """updated at timestamp""" + updatedAt: Datetime! - """Checks for equality with the object’s `archivedBy` field.""" + """archived by user id""" archivedBy: Int - """Checks for equality with the object’s `archivedAt` field.""" + """archived at timestamp""" archivedAt: Datetime - """Checks for equality with the object’s `externalAnalyst` field.""" - externalAnalyst: Boolean -} + """Reads a single `Intake` that is related to this `Application`.""" + intakeByIntakeId: Intake -""" -A filter to be used against `CcbcUser` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Reads a single `CcbcUser` that is related to this `Application`.""" + ccbcUserByCreatedBy: CcbcUser - """Filter by the object’s `sessionSub` field.""" - sessionSub: StringFilter + """Reads a single `CcbcUser` that is related to this `Application`.""" + ccbcUserByUpdatedBy: CcbcUser - """Filter by the object’s `givenName` field.""" - givenName: StringFilter + """Reads a single `CcbcUser` that is related to this `Application`.""" + ccbcUserByArchivedBy: CcbcUser - """Filter by the object’s `familyName` field.""" - familyName: StringFilter + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `emailAddress` field.""" - emailAddress: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Filter by the object’s `externalAnalyst` field.""" - externalAnalyst: BooleanFilter + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUsersByCreatedBy` relation.""" - ccbcUsersByCreatedBy: CcbcUserToManyCcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `ccbcUsersByCreatedBy` exist.""" - ccbcUsersByCreatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUsersByUpdatedBy` relation.""" - ccbcUsersByUpdatedBy: CcbcUserToManyCcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `ccbcUsersByUpdatedBy` exist.""" - ccbcUsersByUpdatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUsersByArchivedBy` relation.""" - ccbcUsersByArchivedBy: CcbcUserToManyCcbcUserFilter + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `ccbcUsersByArchivedBy` exist.""" - ccbcUsersByArchivedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ConditionalApprovalDataCondition - """Filter by the object’s `intakesByCreatedBy` relation.""" - intakesByCreatedBy: CcbcUserToManyIntakeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! - """Some related `intakesByCreatedBy` exist.""" - intakesByCreatedByExist: Boolean + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `intakesByUpdatedBy` relation.""" - intakesByUpdatedBy: CcbcUserToManyIntakeFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `intakesByUpdatedBy` exist.""" - intakesByUpdatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `intakesByArchivedBy` relation.""" - intakesByArchivedBy: CcbcUserToManyIntakeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `intakesByArchivedBy` exist.""" - intakesByArchivedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationsByCreatedBy` relation.""" - applicationsByCreatedBy: CcbcUserToManyApplicationFilter + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `applicationsByCreatedBy` exist.""" - applicationsByCreatedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisAssessmentHhCondition - """Filter by the object’s `applicationsByUpdatedBy` relation.""" - applicationsByUpdatedBy: CcbcUserToManyApplicationFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! - """Some related `applicationsByUpdatedBy` exist.""" - applicationsByUpdatedByExist: Boolean + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationsByArchivedBy` relation.""" - applicationsByArchivedBy: CcbcUserToManyApplicationFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `applicationsByArchivedBy` exist.""" - applicationsByArchivedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationStatusesByCreatedBy` relation.""" - applicationStatusesByCreatedBy: CcbcUserToManyApplicationStatusFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationStatusesByCreatedBy` exist.""" - applicationStatusesByCreatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationStatusesByArchivedBy` relation.""" - applicationStatusesByArchivedBy: CcbcUserToManyApplicationStatusFilter + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `applicationStatusesByArchivedBy` exist.""" - applicationStatusesByArchivedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisDataCondition - """Filter by the object’s `applicationStatusesByUpdatedBy` relation.""" - applicationStatusesByUpdatedBy: CcbcUserToManyApplicationStatusFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """Some related `applicationStatusesByUpdatedBy` exist.""" - applicationStatusesByUpdatedByExist: Boolean + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `attachmentsByCreatedBy` relation.""" - attachmentsByCreatedBy: CcbcUserToManyAttachmentFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `attachmentsByCreatedBy` exist.""" - attachmentsByCreatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `attachmentsByUpdatedBy` relation.""" - attachmentsByUpdatedBy: CcbcUserToManyAttachmentFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `attachmentsByUpdatedBy` exist.""" - attachmentsByUpdatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `attachmentsByArchivedBy` relation.""" - attachmentsByArchivedBy: CcbcUserToManyAttachmentFilter + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `attachmentsByArchivedBy` exist.""" - attachmentsByArchivedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectInformationDataCondition - """Filter by the object’s `formDataByCreatedBy` relation.""" - formDataByCreatedBy: CcbcUserToManyFormDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! - """Some related `formDataByCreatedBy` exist.""" - formDataByCreatedByExist: Boolean + """ + Reads and enables pagination through a set of `ApplicationClaimsData`. + """ + applicationClaimsDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `formDataByUpdatedBy` relation.""" - formDataByUpdatedBy: CcbcUserToManyFormDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `formDataByUpdatedBy` exist.""" - formDataByUpdatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `formDataByArchivedBy` relation.""" - formDataByArchivedBy: CcbcUserToManyFormDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `formDataByArchivedBy` exist.""" - formDataByArchivedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `analystsByCreatedBy` relation.""" - analystsByCreatedBy: CcbcUserToManyAnalystFilter + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `analystsByCreatedBy` exist.""" - analystsByCreatedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationClaimsDataCondition - """Filter by the object’s `analystsByUpdatedBy` relation.""" - analystsByUpdatedBy: CcbcUserToManyAnalystFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! - """Some related `analystsByUpdatedBy` exist.""" - analystsByUpdatedByExist: Boolean + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `analystsByArchivedBy` relation.""" - analystsByArchivedBy: CcbcUserToManyAnalystFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `analystsByArchivedBy` exist.""" - analystsByArchivedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationAnalystLeadsByCreatedBy` relation.""" - applicationAnalystLeadsByCreatedBy: CcbcUserToManyApplicationAnalystLeadFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationAnalystLeadsByCreatedBy` exist.""" - applicationAnalystLeadsByCreatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationAnalystLeadsByUpdatedBy` relation.""" - applicationAnalystLeadsByUpdatedBy: CcbcUserToManyApplicationAnalystLeadFilter + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `applicationAnalystLeadsByUpdatedBy` exist.""" - applicationAnalystLeadsByUpdatedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationClaimsExcelDataCondition - """Filter by the object’s `applicationAnalystLeadsByArchivedBy` relation.""" - applicationAnalystLeadsByArchivedBy: CcbcUserToManyApplicationAnalystLeadFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! - """Some related `applicationAnalystLeadsByArchivedBy` exist.""" - applicationAnalystLeadsByArchivedByExist: Boolean + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `rfiDataByCreatedBy` relation.""" - rfiDataByCreatedBy: CcbcUserToManyRfiDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `rfiDataByCreatedBy` exist.""" - rfiDataByCreatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `rfiDataByUpdatedBy` relation.""" - rfiDataByUpdatedBy: CcbcUserToManyRfiDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `rfiDataByUpdatedBy` exist.""" - rfiDataByUpdatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `rfiDataByArchivedBy` relation.""" - rfiDataByArchivedBy: CcbcUserToManyRfiDataFilter + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `rfiDataByArchivedBy` exist.""" - rfiDataByArchivedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCommunityProgressReportDataCondition - """Filter by the object’s `assessmentDataByCreatedBy` relation.""" - assessmentDataByCreatedBy: CcbcUserToManyAssessmentDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! - """Some related `assessmentDataByCreatedBy` exist.""" - assessmentDataByCreatedByExist: Boolean + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `assessmentDataByUpdatedBy` relation.""" - assessmentDataByUpdatedBy: CcbcUserToManyAssessmentDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `assessmentDataByUpdatedBy` exist.""" - assessmentDataByUpdatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `assessmentDataByArchivedBy` relation.""" - assessmentDataByArchivedBy: CcbcUserToManyAssessmentDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `assessmentDataByArchivedBy` exist.""" - assessmentDataByArchivedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationPackagesByCreatedBy` relation.""" - applicationPackagesByCreatedBy: CcbcUserToManyApplicationPackageFilter + """ + The method to use when ordering `ApplicationCommunityReportExcelData`. + """ + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `applicationPackagesByCreatedBy` exist.""" - applicationPackagesByCreatedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCommunityReportExcelDataCondition - """Filter by the object’s `applicationPackagesByUpdatedBy` relation.""" - applicationPackagesByUpdatedBy: CcbcUserToManyApplicationPackageFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! - """Some related `applicationPackagesByUpdatedBy` exist.""" - applicationPackagesByUpdatedByExist: Boolean + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationPackagesByArchivedBy` relation.""" - applicationPackagesByArchivedBy: CcbcUserToManyApplicationPackageFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `applicationPackagesByArchivedBy` exist.""" - applicationPackagesByArchivedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `recordVersionsByCreatedBy` relation.""" - recordVersionsByCreatedBy: CcbcUserToManyRecordVersionFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `recordVersionsByCreatedBy` exist.""" - recordVersionsByCreatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `conditionalApprovalDataByCreatedBy` relation.""" - conditionalApprovalDataByCreatedBy: CcbcUserToManyConditionalApprovalDataFilter + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `conditionalApprovalDataByCreatedBy` exist.""" - conditionalApprovalDataByCreatedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationInternalDescriptionCondition - """Filter by the object’s `conditionalApprovalDataByUpdatedBy` relation.""" - conditionalApprovalDataByUpdatedBy: CcbcUserToManyConditionalApprovalDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! - """Some related `conditionalApprovalDataByUpdatedBy` exist.""" - conditionalApprovalDataByUpdatedByExist: Boolean + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `conditionalApprovalDataByArchivedBy` relation.""" - conditionalApprovalDataByArchivedBy: CcbcUserToManyConditionalApprovalDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `conditionalApprovalDataByArchivedBy` exist.""" - conditionalApprovalDataByArchivedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `gisDataByCreatedBy` relation.""" - gisDataByCreatedBy: CcbcUserToManyGisDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `gisDataByCreatedBy` exist.""" - gisDataByCreatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `gisDataByUpdatedBy` relation.""" - gisDataByUpdatedBy: CcbcUserToManyGisDataFilter + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `gisDataByUpdatedBy` exist.""" - gisDataByUpdatedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationMilestoneDataCondition - """Filter by the object’s `gisDataByArchivedBy` relation.""" - gisDataByArchivedBy: CcbcUserToManyGisDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! - """Some related `gisDataByArchivedBy` exist.""" - gisDataByArchivedByExist: Boolean + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationGisDataByCreatedBy` relation.""" - applicationGisDataByCreatedBy: CcbcUserToManyApplicationGisDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `applicationGisDataByCreatedBy` exist.""" - applicationGisDataByCreatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationGisDataByUpdatedBy` relation.""" - applicationGisDataByUpdatedBy: CcbcUserToManyApplicationGisDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationGisDataByUpdatedBy` exist.""" - applicationGisDataByUpdatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationGisDataByArchivedBy` relation.""" - applicationGisDataByArchivedBy: CcbcUserToManyApplicationGisDataFilter + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `applicationGisDataByArchivedBy` exist.""" - applicationGisDataByArchivedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationMilestoneExcelDataCondition - """Filter by the object’s `announcementsByCreatedBy` relation.""" - announcementsByCreatedBy: CcbcUserToManyAnnouncementFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! - """Some related `announcementsByCreatedBy` exist.""" - announcementsByCreatedByExist: Boolean + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `announcementsByUpdatedBy` relation.""" - announcementsByUpdatedBy: CcbcUserToManyAnnouncementFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `announcementsByUpdatedBy` exist.""" - announcementsByUpdatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `announcementsByArchivedBy` relation.""" - announcementsByArchivedBy: CcbcUserToManyAnnouncementFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `announcementsByArchivedBy` exist.""" - announcementsByArchivedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationAnnouncementsByCreatedBy` relation.""" - applicationAnnouncementsByCreatedBy: CcbcUserToManyApplicationAnnouncementFilter + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `applicationAnnouncementsByCreatedBy` exist.""" - applicationAnnouncementsByCreatedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationSowDataCondition - """Filter by the object’s `applicationAnnouncementsByUpdatedBy` relation.""" - applicationAnnouncementsByUpdatedBy: CcbcUserToManyApplicationAnnouncementFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! - """Some related `applicationAnnouncementsByUpdatedBy` exist.""" - applicationAnnouncementsByUpdatedByExist: Boolean + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """ - Filter by the object’s `applicationAnnouncementsByArchivedBy` relation. - """ - applicationAnnouncementsByArchivedBy: CcbcUserToManyApplicationAnnouncementFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `applicationAnnouncementsByArchivedBy` exist.""" - applicationAnnouncementsByArchivedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationSowDataByCreatedBy` relation.""" - applicationSowDataByCreatedBy: CcbcUserToManyApplicationSowDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationSowDataByCreatedBy` exist.""" - applicationSowDataByCreatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationSowDataByUpdatedBy` relation.""" - applicationSowDataByUpdatedBy: CcbcUserToManyApplicationSowDataFilter + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `applicationSowDataByUpdatedBy` exist.""" - applicationSowDataByUpdatedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ChangeRequestDataCondition - """Filter by the object’s `applicationSowDataByArchivedBy` relation.""" - applicationSowDataByArchivedBy: CcbcUserToManyApplicationSowDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! - """Some related `applicationSowDataByArchivedBy` exist.""" - applicationSowDataByArchivedByExist: Boolean + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `sowTab2SByCreatedBy` relation.""" - sowTab2SByCreatedBy: CcbcUserToManySowTab2Filter + """Only read the last `n` values of the set.""" + last: Int - """Some related `sowTab2SByCreatedBy` exist.""" - sowTab2SByCreatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `sowTab2SByUpdatedBy` relation.""" - sowTab2SByUpdatedBy: CcbcUserToManySowTab2Filter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `sowTab2SByUpdatedBy` exist.""" - sowTab2SByUpdatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `sowTab2SByArchivedBy` relation.""" - sowTab2SByArchivedBy: CcbcUserToManySowTab2Filter + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `sowTab2SByArchivedBy` exist.""" - sowTab2SByArchivedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition - """Filter by the object’s `sowTab1SByCreatedBy` relation.""" - sowTab1SByCreatedBy: CcbcUserToManySowTab1Filter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! - """Some related `sowTab1SByCreatedBy` exist.""" - sowTab1SByCreatedByExist: Boolean + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `sowTab1SByUpdatedBy` relation.""" - sowTab1SByUpdatedBy: CcbcUserToManySowTab1Filter + """Only read the last `n` values of the set.""" + last: Int - """Some related `sowTab1SByUpdatedBy` exist.""" - sowTab1SByUpdatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `sowTab1SByArchivedBy` relation.""" - sowTab1SByArchivedBy: CcbcUserToManySowTab1Filter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `sowTab1SByArchivedBy` exist.""" - sowTab1SByArchivedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `projectInformationDataByCreatedBy` relation.""" - projectInformationDataByCreatedBy: CcbcUserToManyProjectInformationDataFilter + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `projectInformationDataByCreatedBy` exist.""" - projectInformationDataByCreatedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPackageCondition - """Filter by the object’s `projectInformationDataByUpdatedBy` relation.""" - projectInformationDataByUpdatedBy: CcbcUserToManyProjectInformationDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! - """Some related `projectInformationDataByUpdatedBy` exist.""" - projectInformationDataByUpdatedByExist: Boolean + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `projectInformationDataByArchivedBy` relation.""" - projectInformationDataByArchivedBy: CcbcUserToManyProjectInformationDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `projectInformationDataByArchivedBy` exist.""" - projectInformationDataByArchivedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `sowTab7SByCreatedBy` relation.""" - sowTab7SByCreatedBy: CcbcUserToManySowTab7Filter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `sowTab7SByCreatedBy` exist.""" - sowTab7SByCreatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `sowTab7SByUpdatedBy` relation.""" - sowTab7SByUpdatedBy: CcbcUserToManySowTab7Filter + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `sowTab7SByUpdatedBy` exist.""" - sowTab7SByUpdatedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationProjectTypeCondition - """Filter by the object’s `sowTab7SByArchivedBy` relation.""" - sowTab7SByArchivedBy: CcbcUserToManySowTab7Filter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! - """Some related `sowTab7SByArchivedBy` exist.""" - sowTab7SByArchivedByExist: Boolean + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `sowTab8SByCreatedBy` relation.""" - sowTab8SByCreatedBy: CcbcUserToManySowTab8Filter + """Only read the last `n` values of the set.""" + last: Int - """Some related `sowTab8SByCreatedBy` exist.""" - sowTab8SByCreatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `sowTab8SByUpdatedBy` relation.""" - sowTab8SByUpdatedBy: CcbcUserToManySowTab8Filter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `sowTab8SByUpdatedBy` exist.""" - sowTab8SByUpdatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `sowTab8SByArchivedBy` relation.""" - sowTab8SByArchivedBy: CcbcUserToManySowTab8Filter + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `sowTab8SByArchivedBy` exist.""" - sowTab8SByArchivedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AttachmentCondition - """Filter by the object’s `changeRequestDataByCreatedBy` relation.""" - changeRequestDataByCreatedBy: CcbcUserToManyChangeRequestDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AttachmentFilter + ): AttachmentsConnection! - """Some related `changeRequestDataByCreatedBy` exist.""" - changeRequestDataByCreatedByExist: Boolean + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `changeRequestDataByUpdatedBy` relation.""" - changeRequestDataByUpdatedBy: CcbcUserToManyChangeRequestDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `changeRequestDataByUpdatedBy` exist.""" - changeRequestDataByUpdatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `changeRequestDataByArchivedBy` relation.""" - changeRequestDataByArchivedBy: CcbcUserToManyChangeRequestDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `changeRequestDataByArchivedBy` exist.""" - changeRequestDataByArchivedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Filter by the object’s `applicationCommunityProgressReportDataByCreatedBy` relation. - """ - applicationCommunityProgressReportDataByCreatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `applicationCommunityProgressReportDataByCreatedBy` exist. - """ - applicationCommunityProgressReportDataByCreatedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnalystLeadCondition - """ - Filter by the object’s `applicationCommunityProgressReportDataByUpdatedBy` relation. - """ - applicationCommunityProgressReportDataByUpdatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! """ - Some related `applicationCommunityProgressReportDataByUpdatedBy` exist. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationCommunityProgressReportDataByUpdatedByExist: Boolean + applicationAnnouncementsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """ - Filter by the object’s `applicationCommunityProgressReportDataByArchivedBy` relation. - """ - applicationCommunityProgressReportDataByArchivedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `applicationCommunityProgressReportDataByArchivedBy` exist. - """ - applicationCommunityProgressReportDataByArchivedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Filter by the object’s `applicationCommunityReportExcelDataByCreatedBy` relation. - """ - applicationCommunityReportExcelDataByCreatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationCommunityReportExcelDataByCreatedBy` exist.""" - applicationCommunityReportExcelDataByCreatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Filter by the object’s `applicationCommunityReportExcelDataByUpdatedBy` relation. - """ - applicationCommunityReportExcelDataByUpdatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `applicationCommunityReportExcelDataByUpdatedBy` exist.""" - applicationCommunityReportExcelDataByUpdatedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncementCondition - """ - Filter by the object’s `applicationCommunityReportExcelDataByArchivedBy` relation. - """ - applicationCommunityReportExcelDataByArchivedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! - """Some related `applicationCommunityReportExcelDataByArchivedBy` exist.""" - applicationCommunityReportExcelDataByArchivedByExist: Boolean + """Reads and enables pagination through a set of `ApplicationFormData`.""" + applicationFormDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationClaimsDataByCreatedBy` relation.""" - applicationClaimsDataByCreatedBy: CcbcUserToManyApplicationClaimsDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `applicationClaimsDataByCreatedBy` exist.""" - applicationClaimsDataByCreatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationClaimsDataByUpdatedBy` relation.""" - applicationClaimsDataByUpdatedBy: CcbcUserToManyApplicationClaimsDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationClaimsDataByUpdatedBy` exist.""" - applicationClaimsDataByUpdatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationClaimsDataByArchivedBy` relation.""" - applicationClaimsDataByArchivedBy: CcbcUserToManyApplicationClaimsDataFilter + """The method to use when ordering `ApplicationFormData`.""" + orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `applicationClaimsDataByArchivedBy` exist.""" - applicationClaimsDataByArchivedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationFormDataCondition - """ - Filter by the object’s `applicationClaimsExcelDataByCreatedBy` relation. - """ - applicationClaimsExcelDataByCreatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFormDataFilter + ): ApplicationFormDataConnection! - """Some related `applicationClaimsExcelDataByCreatedBy` exist.""" - applicationClaimsExcelDataByCreatedByExist: Boolean + """Reads and enables pagination through a set of `ApplicationRfiData`.""" + applicationRfiDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """ - Filter by the object’s `applicationClaimsExcelDataByUpdatedBy` relation. - """ - applicationClaimsExcelDataByUpdatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `applicationClaimsExcelDataByUpdatedBy` exist.""" - applicationClaimsExcelDataByUpdatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Filter by the object’s `applicationClaimsExcelDataByArchivedBy` relation. - """ - applicationClaimsExcelDataByArchivedBy: CcbcUserToManyApplicationClaimsExcelDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationClaimsExcelDataByArchivedBy` exist.""" - applicationClaimsExcelDataByArchivedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationMilestoneDataByCreatedBy` relation.""" - applicationMilestoneDataByCreatedBy: CcbcUserToManyApplicationMilestoneDataFilter + """The method to use when ordering `ApplicationRfiData`.""" + orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `applicationMilestoneDataByCreatedBy` exist.""" - applicationMilestoneDataByCreatedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationRfiDataCondition - """Filter by the object’s `applicationMilestoneDataByUpdatedBy` relation.""" - applicationMilestoneDataByUpdatedBy: CcbcUserToManyApplicationMilestoneDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationRfiDataFilter + ): ApplicationRfiDataConnection! - """Some related `applicationMilestoneDataByUpdatedBy` exist.""" - applicationMilestoneDataByUpdatedByExist: Boolean + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """ - Filter by the object’s `applicationMilestoneDataByArchivedBy` relation. - """ - applicationMilestoneDataByArchivedBy: CcbcUserToManyApplicationMilestoneDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `applicationMilestoneDataByArchivedBy` exist.""" - applicationMilestoneDataByArchivedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Filter by the object’s `applicationMilestoneExcelDataByCreatedBy` relation. - """ - applicationMilestoneExcelDataByCreatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationMilestoneExcelDataByCreatedBy` exist.""" - applicationMilestoneExcelDataByCreatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Filter by the object’s `applicationMilestoneExcelDataByUpdatedBy` relation. - """ - applicationMilestoneExcelDataByUpdatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `applicationMilestoneExcelDataByUpdatedBy` exist.""" - applicationMilestoneExcelDataByUpdatedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! """ - Filter by the object’s `applicationMilestoneExcelDataByArchivedBy` relation. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationMilestoneExcelDataByArchivedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter + applicationPendingChangeRequestsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationMilestoneExcelDataByArchivedBy` exist.""" - applicationMilestoneExcelDataByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `cbcProjectsByCreatedBy` relation.""" - cbcProjectsByCreatedBy: CcbcUserToManyCbcProjectFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `cbcProjectsByCreatedBy` exist.""" - cbcProjectsByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `cbcProjectsByUpdatedBy` relation.""" - cbcProjectsByUpdatedBy: CcbcUserToManyCbcProjectFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `cbcProjectsByUpdatedBy` exist.""" - cbcProjectsByUpdatedByExist: Boolean + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `cbcProjectsByArchivedBy` relation.""" - cbcProjectsByArchivedBy: CcbcUserToManyCbcProjectFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition - """Some related `cbcProjectsByArchivedBy` exist.""" - cbcProjectsByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! - """ - Filter by the object’s `applicationInternalDescriptionsByCreatedBy` relation. - """ - applicationInternalDescriptionsByCreatedBy: CcbcUserToManyApplicationInternalDescriptionFilter + """Reads and enables pagination through a set of `AssessmentData`.""" + allAssessments( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationInternalDescriptionsByCreatedBy` exist.""" - applicationInternalDescriptionsByCreatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `applicationInternalDescriptionsByUpdatedBy` relation. - """ - applicationInternalDescriptionsByUpdatedBy: CcbcUserToManyApplicationInternalDescriptionFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationInternalDescriptionsByUpdatedBy` exist.""" - applicationInternalDescriptionsByUpdatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! """ - Filter by the object’s `applicationInternalDescriptionsByArchivedBy` relation. + computed column to return space separated list of amendment numbers for a change request """ - applicationInternalDescriptionsByArchivedBy: CcbcUserToManyApplicationInternalDescriptionFilter + amendmentNumbers: String - """Some related `applicationInternalDescriptionsByArchivedBy` exist.""" - applicationInternalDescriptionsByArchivedByExist: Boolean + """Computed column to return analyst lead of an application""" + analystLead: String - """Filter by the object’s `applicationProjectTypesByCreatedBy` relation.""" - applicationProjectTypesByCreatedBy: CcbcUserToManyApplicationProjectTypeFilter + """Computed column to return the analyst-visible status of an application""" + analystStatus: String - """Some related `applicationProjectTypesByCreatedBy` exist.""" - applicationProjectTypesByCreatedByExist: Boolean + """Computed column that returns list of announcements for the application""" + announcements( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationProjectTypesByUpdatedBy` relation.""" - applicationProjectTypesByUpdatedBy: CcbcUserToManyApplicationProjectTypeFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `applicationProjectTypesByUpdatedBy` exist.""" - applicationProjectTypesByUpdatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationProjectTypesByArchivedBy` relation.""" - applicationProjectTypesByArchivedBy: CcbcUserToManyApplicationProjectTypeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationProjectTypesByArchivedBy` exist.""" - applicationProjectTypesByArchivedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `emailRecordsByCreatedBy` relation.""" - emailRecordsByCreatedBy: CcbcUserToManyEmailRecordFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnnouncementFilter + ): AnnouncementsConnection! - """Some related `emailRecordsByCreatedBy` exist.""" - emailRecordsByCreatedByExist: Boolean + """Computed column that takes the slug to return an assessment form""" + assessmentForm(_assessmentDataType: String!): AssessmentData - """Filter by the object’s `emailRecordsByUpdatedBy` relation.""" - emailRecordsByUpdatedBy: CcbcUserToManyEmailRecordFilter + """Computed column to return conditional approval data""" + conditionalApproval: ConditionalApprovalData - """Some related `emailRecordsByUpdatedBy` exist.""" - emailRecordsByUpdatedByExist: Boolean + """Computed column to return external status of an application""" + externalStatus: String - """Filter by the object’s `emailRecordsByArchivedBy` relation.""" - emailRecordsByArchivedBy: CcbcUserToManyEmailRecordFilter + """Computed column to display form_data""" + formData: FormData - """Some related `emailRecordsByArchivedBy` exist.""" - emailRecordsByArchivedByExist: Boolean + """Computed column to return the GIS assessment household counts""" + gisAssessmentHh: ApplicationGisAssessmentHh - """Filter by the object’s `notificationsByCreatedBy` relation.""" - notificationsByCreatedBy: CcbcUserToManyNotificationFilter + """Computed column to return last GIS data for an application""" + gisData: ApplicationGisData - """Some related `notificationsByCreatedBy` exist.""" - notificationsByCreatedByExist: Boolean + """Computed column to return whether the rfi is open""" + hasRfiOpen: Boolean - """Filter by the object’s `notificationsByUpdatedBy` relation.""" - notificationsByUpdatedBy: CcbcUserToManyNotificationFilter + """Computed column that returns list of audit records for application""" + history( + """Only read the first `n` values of the set.""" + first: Int - """Some related `notificationsByUpdatedBy` exist.""" - notificationsByUpdatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `notificationsByArchivedBy` relation.""" - notificationsByArchivedBy: CcbcUserToManyNotificationFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `notificationsByArchivedBy` exist.""" - notificationsByArchivedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationPendingChangeRequestsByCreatedBy` relation. - """ - applicationPendingChangeRequestsByCreatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationPendingChangeRequestsByCreatedBy` exist.""" - applicationPendingChangeRequestsByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: HistoryItemFilter + ): HistoryItemsConnection! + intakeNumber: Int + internalDescription: String - """ - Filter by the object’s `applicationPendingChangeRequestsByUpdatedBy` relation. - """ - applicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + """Computed column to display organization name from json data""" + organizationName: String - """Some related `applicationPendingChangeRequestsByUpdatedBy` exist.""" - applicationPendingChangeRequestsByUpdatedByExist: Boolean + """Computed column to return the internal description for an application""" + package: Int - """ - Filter by the object’s `applicationPendingChangeRequestsByArchivedBy` relation. - """ - applicationPendingChangeRequestsByArchivedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + """Computed column to return project information data""" + projectInformation: ProjectInformationData - """Some related `applicationPendingChangeRequestsByArchivedBy` exist.""" - applicationPendingChangeRequestsByArchivedByExist: Boolean + """Computed column to display the project name""" + projectName: String - """Filter by the object’s `cbcsByCreatedBy` relation.""" - cbcsByCreatedBy: CcbcUserToManyCbcFilter + """Computed column to return last RFI for an application""" + rfi: RfiData - """Some related `cbcsByCreatedBy` exist.""" - cbcsByCreatedByExist: Boolean + """Computed column to return status of an application""" + status: String - """Filter by the object’s `cbcsByUpdatedBy` relation.""" - cbcsByUpdatedBy: CcbcUserToManyCbcFilter + """Computed column to return the order of the status""" + statusOrder: Int - """Some related `cbcsByUpdatedBy` exist.""" - cbcsByUpdatedByExist: Boolean + """ + Computed column to return the status order with the status name appended for sorting and filtering + """ + statusSortFilter: String + zone: Int - """Filter by the object’s `cbcsByArchivedBy` relation.""" - cbcsByArchivedBy: CcbcUserToManyCbcFilter + """ + Computed column to get single lowest zone from json data, used for sorting + """ + zones: [Int] - """Some related `cbcsByArchivedBy` exist.""" - cbcsByArchivedByExist: Boolean + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataApplicationIdAndAssessmentDataType( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `cbcDataByCreatedBy` relation.""" - cbcDataByCreatedBy: CcbcUserToManyCbcDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `cbcDataByCreatedBy` exist.""" - cbcDataByCreatedByExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `cbcDataByUpdatedBy` relation.""" - cbcDataByUpdatedBy: CcbcUserToManyCbcDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `cbcDataByUpdatedBy` exist.""" - cbcDataByUpdatedByExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `cbcDataByArchivedBy` relation.""" - cbcDataByArchivedBy: CcbcUserToManyCbcDataFilter + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `cbcDataByArchivedBy` exist.""" - cbcDataByArchivedByExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentTypeCondition - """Filter by the object’s `keycloakJwtsBySub` relation.""" - keycloakJwtsBySub: CcbcUserToManyKeycloakJwtFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentTypeFilter + ): ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection! - """Some related `keycloakJwtsBySub` exist.""" - keycloakJwtsBySubExist: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for all expressions in this list.""" - and: [CcbcUserFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection! - """Checks for any expressions in this list.""" - or: [CcbcUserFilter!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Negates the expression.""" - not: CcbcUserFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against Int fields. All fields are combined with a logical ‘and.’ -""" -input IntFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Equal to the specified value.""" - equalTo: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Not equal to the specified value.""" - notEqualTo: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: Int + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Included in the specified list.""" - in: [Int!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection! - """Not included in the specified list.""" - notIn: [Int!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Less than the specified value.""" - lessThan: Int + """Only read the last `n` values of the set.""" + last: Int - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Greater than the specified value.""" - greaterThan: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Int -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against String fields. All fields are combined with a logical ‘and.’ -""" -input StringFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Equal to the specified value.""" - equalTo: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Not equal to the specified value.""" - notEqualTo: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection! - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: String + """Only read the last `n` values of the set.""" + last: Int - """Included in the specified list.""" - in: [String!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Not included in the specified list.""" - notIn: [String!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Less than the specified value.""" - lessThan: String + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Less than or equal to the specified value.""" - lessThanOrEqualTo: String + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Greater than the specified value.""" - greaterThan: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection! - """Contains the specified string (case-sensitive).""" - includes: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Does not contain the specified string (case-sensitive).""" - notIncludes: String + """Only read the last `n` values of the set.""" + last: Int - """Contains the specified string (case-insensitive).""" - includesInsensitive: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Does not contain the specified string (case-insensitive).""" - notIncludesInsensitive: String + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Starts with the specified string (case-sensitive).""" - startsWith: String + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Does not start with the specified string (case-sensitive).""" - notStartsWith: String + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Starts with the specified string (case-insensitive).""" - startsWithInsensitive: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Does not start with the specified string (case-insensitive).""" - notStartsWithInsensitive: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection! - """Ends with the specified string (case-sensitive).""" - endsWith: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Does not end with the specified string (case-sensitive).""" - notEndsWith: String + """Only read the last `n` values of the set.""" + last: Int - """Ends with the specified string (case-insensitive).""" - endsWithInsensitive: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Does not end with the specified string (case-insensitive).""" - notEndsWithInsensitive: String + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. - """ - like: String + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. - """ - notLike: String + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. - """ - likeInsensitive: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. - """ - notLikeInsensitive: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection! - """Equal to the specified value (case-insensitive).""" - equalToInsensitive: String + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataApplicationIdAndBatchId( + """Only read the first `n` values of the set.""" + first: Int - """Not equal to the specified value (case-insensitive).""" - notEqualToInsensitive: String + """Only read the last `n` values of the set.""" + last: Int - """ - Not equal to the specified value, treating null like an ordinary value (case-insensitive). - """ - distinctFromInsensitive: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Equal to the specified value, treating null like an ordinary value (case-insensitive). - """ - notDistinctFromInsensitive: String + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Included in the specified list (case-insensitive).""" - inInsensitive: [String!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Not included in the specified list (case-insensitive).""" - notInInsensitive: [String!] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] - """Less than the specified value (case-insensitive).""" - lessThanInsensitive: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: GisDataCondition - """Less than or equal to the specified value (case-insensitive).""" - lessThanOrEqualToInsensitive: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: GisDataFilter + ): ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection! - """Greater than the specified value (case-insensitive).""" - greaterThanInsensitive: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Greater than or equal to the specified value (case-insensitive).""" - greaterThanOrEqualToInsensitive: String -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ -""" -input DatetimeFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Equal to the specified value.""" - equalTo: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Not equal to the specified value.""" - notEqualTo: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: Datetime + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Included in the specified list.""" - in: [Datetime!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection! - """Not included in the specified list.""" - notIn: [Datetime!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Less than the specified value.""" - lessThan: Datetime + """Only read the last `n` values of the set.""" + last: Int - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Datetime - - """Greater than the specified value.""" - greaterThan: Datetime + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Datetime -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ -""" -input BooleanFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Equal to the specified value.""" - equalTo: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Not equal to the specified value.""" - notEqualTo: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection! - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Included in the specified list.""" - in: [Boolean!] + """Only read the last `n` values of the set.""" + last: Int - """Not included in the specified list.""" - notIn: [Boolean!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Less than the specified value.""" - lessThan: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Greater than the specified value.""" - greaterThan: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Boolean -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against many `CcbcUser` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCcbcUserFilter { - """ - Every related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection! - """ - Some related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CcbcUserFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyIntakeFilter { - """ - Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: IntakeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: IntakeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: IntakeFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against `Intake` object types. All fields are combined with a logical ‘and.’ -""" -input IntakeFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `openTimestamp` field.""" - openTimestamp: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `closeTimestamp` field.""" - closeTimestamp: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `ccbcIntakeNumber` field.""" - ccbcIntakeNumber: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationNumberSeqName` field.""" - applicationNumberSeqName: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `counterId` field.""" - counterId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `description` field.""" - description: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `hidden` field.""" - hidden: BooleanFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `hiddenCode` field.""" - hiddenCode: UUIDFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationsByIntakeId` relation.""" - applicationsByIntakeId: IntakeToManyApplicationFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationsByIntakeId` exist.""" - applicationsByIntakeIdExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `gaplessCounterByCounterId` relation.""" - gaplessCounterByCounterId: GaplessCounterFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `gaplessCounterByCounterId` exists.""" - gaplessCounterByCounterIdExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for all expressions in this list.""" - and: [IntakeFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for any expressions in this list.""" - or: [IntakeFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection! - """Negates the expression.""" - not: IntakeFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ -""" -input UUIDFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Equal to the specified value.""" - equalTo: UUID + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Not equal to the specified value.""" - notEqualTo: UUID + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: UUID + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: UUID + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Included in the specified list.""" - in: [UUID!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Not included in the specified list.""" - notIn: [UUID!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection! - """Less than the specified value.""" - lessThan: UUID + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Less than or equal to the specified value.""" - lessThanOrEqualTo: UUID + """Only read the last `n` values of the set.""" + last: Int - """Greater than the specified value.""" - greaterThan: UUID + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: UUID -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). -""" -scalar UUID + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `Application` object types. All fields are combined with a logical ‘and.’ -""" -input IntakeToManyApplicationFilter { - """ - Every related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - No related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection! -""" -A filter to be used against `Application` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcNumber` field.""" - ccbcNumber: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `owner` field.""" - owner: StringFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `intakeId` field.""" - intakeId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `amendmentNumbers` field.""" - amendmentNumbers: StringFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `analystLead` field.""" - analystLead: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `analystStatus` field.""" - analystStatus: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `externalStatus` field.""" - externalStatus: StringFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `hasRfiOpen` field.""" - hasRfiOpen: BooleanFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `intakeNumber` field.""" - intakeNumber: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `internalDescription` field.""" - internalDescription: StringFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `organizationName` field.""" - organizationName: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `package` field.""" - package: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `projectName` field.""" - projectName: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `status` field.""" - status: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `statusOrder` field.""" - statusOrder: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `statusSortFilter` field.""" - statusSortFilter: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `zone` field.""" - zone: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `zones` field.""" - zones: IntListFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationStatusesByApplicationId` relation.""" - applicationStatusesByApplicationId: ApplicationToManyApplicationStatusFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `applicationStatusesByApplicationId` exist.""" - applicationStatusesByApplicationIdExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `attachmentsByApplicationId` relation.""" - attachmentsByApplicationId: ApplicationToManyAttachmentFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `attachmentsByApplicationId` exist.""" - attachmentsByApplicationIdExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationFormDataByApplicationId` relation.""" - applicationFormDataByApplicationId: ApplicationToManyApplicationFormDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `applicationFormDataByApplicationId` exist.""" - applicationFormDataByApplicationIdExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Filter by the object’s `applicationAnalystLeadsByApplicationId` relation. - """ - applicationAnalystLeadsByApplicationId: ApplicationToManyApplicationAnalystLeadFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection! - """Some related `applicationAnalystLeadsByApplicationId` exist.""" - applicationAnalystLeadsByApplicationIdExist: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationRfiDataByApplicationId` relation.""" - applicationRfiDataByApplicationId: ApplicationToManyApplicationRfiDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `applicationRfiDataByApplicationId` exist.""" - applicationRfiDataByApplicationIdExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `assessmentDataByApplicationId` relation.""" - assessmentDataByApplicationId: ApplicationToManyAssessmentDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `assessmentDataByApplicationId` exist.""" - assessmentDataByApplicationIdExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `applicationPackagesByApplicationId` relation.""" - applicationPackagesByApplicationId: ApplicationToManyApplicationPackageFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `applicationPackagesByApplicationId` exist.""" - applicationPackagesByApplicationIdExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Filter by the object’s `conditionalApprovalDataByApplicationId` relation. - """ - conditionalApprovalDataByApplicationId: ApplicationToManyConditionalApprovalDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection! - """Some related `conditionalApprovalDataByApplicationId` exist.""" - conditionalApprovalDataByApplicationIdExist: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationGisDataByApplicationId` relation.""" - applicationGisDataByApplicationId: ApplicationToManyApplicationGisDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `applicationGisDataByApplicationId` exist.""" - applicationGisDataByApplicationIdExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Filter by the object’s `applicationAnnouncementsByApplicationId` relation. - """ - applicationAnnouncementsByApplicationId: ApplicationToManyApplicationAnnouncementFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationAnnouncementsByApplicationId` exist.""" - applicationAnnouncementsByApplicationIdExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Filter by the object’s `applicationGisAssessmentHhsByApplicationId` relation. - """ - applicationGisAssessmentHhsByApplicationId: ApplicationToManyApplicationGisAssessmentHhFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `applicationGisAssessmentHhsByApplicationId` exist.""" - applicationGisAssessmentHhsByApplicationIdExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `applicationSowDataByApplicationId` relation.""" - applicationSowDataByApplicationId: ApplicationToManyApplicationSowDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection! - """Some related `applicationSowDataByApplicationId` exist.""" - applicationSowDataByApplicationIdExist: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Filter by the object’s `projectInformationDataByApplicationId` relation. - """ - projectInformationDataByApplicationId: ApplicationToManyProjectInformationDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `projectInformationDataByApplicationId` exist.""" - projectInformationDataByApplicationIdExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `changeRequestDataByApplicationId` relation.""" - changeRequestDataByApplicationId: ApplicationToManyChangeRequestDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `changeRequestDataByApplicationId` exist.""" - changeRequestDataByApplicationIdExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Filter by the object’s `applicationCommunityProgressReportDataByApplicationId` relation. - """ - applicationCommunityProgressReportDataByApplicationId: ApplicationToManyApplicationCommunityProgressReportDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `applicationCommunityProgressReportDataByApplicationId` exist. - """ - applicationCommunityProgressReportDataByApplicationIdExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Filter by the object’s `applicationCommunityReportExcelDataByApplicationId` relation. - """ - applicationCommunityReportExcelDataByApplicationId: ApplicationToManyApplicationCommunityReportExcelDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection! - """ - Some related `applicationCommunityReportExcelDataByApplicationId` exist. - """ - applicationCommunityReportExcelDataByApplicationIdExist: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Filter by the object’s `applicationClaimsDataByApplicationId` relation. - """ - applicationClaimsDataByApplicationId: ApplicationToManyApplicationClaimsDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `applicationClaimsDataByApplicationId` exist.""" - applicationClaimsDataByApplicationIdExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Filter by the object’s `applicationClaimsExcelDataByApplicationId` relation. - """ - applicationClaimsExcelDataByApplicationId: ApplicationToManyApplicationClaimsExcelDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationClaimsExcelDataByApplicationId` exist.""" - applicationClaimsExcelDataByApplicationIdExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Filter by the object’s `applicationMilestoneDataByApplicationId` relation. - """ - applicationMilestoneDataByApplicationId: ApplicationToManyApplicationMilestoneDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `applicationMilestoneDataByApplicationId` exist.""" - applicationMilestoneDataByApplicationIdExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Filter by the object’s `applicationMilestoneExcelDataByApplicationId` relation. - """ - applicationMilestoneExcelDataByApplicationId: ApplicationToManyApplicationMilestoneExcelDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection! - """Some related `applicationMilestoneExcelDataByApplicationId` exist.""" - applicationMilestoneExcelDataByApplicationIdExist: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Filter by the object’s `applicationInternalDescriptionsByApplicationId` relation. - """ - applicationInternalDescriptionsByApplicationId: ApplicationToManyApplicationInternalDescriptionFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `applicationInternalDescriptionsByApplicationId` exist.""" - applicationInternalDescriptionsByApplicationIdExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Filter by the object’s `applicationProjectTypesByApplicationId` relation. - """ - applicationProjectTypesByApplicationId: ApplicationToManyApplicationProjectTypeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationProjectTypesByApplicationId` exist.""" - applicationProjectTypesByApplicationIdExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `notificationsByApplicationId` relation.""" - notificationsByApplicationId: ApplicationToManyNotificationFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `notificationsByApplicationId` exist.""" - notificationsByApplicationIdExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Filter by the object’s `applicationPendingChangeRequestsByApplicationId` relation. - """ - applicationPendingChangeRequestsByApplicationId: ApplicationToManyApplicationPendingChangeRequestFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection! - """Some related `applicationPendingChangeRequestsByApplicationId` exist.""" - applicationPendingChangeRequestsByApplicationIdExist: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `intakeByIntakeId` relation.""" - intakeByIntakeId: IntakeFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `intakeByIntakeId` exists.""" - intakeByIntakeIdExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection! - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for all expressions in this list.""" - and: [ApplicationFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Checks for any expressions in this list.""" - or: [ApplicationFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Negates the expression.""" - not: ApplicationFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against Int List fields. All fields are combined with a logical ‘and.’ -""" -input IntListFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Equal to the specified value.""" - equalTo: [Int] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Not equal to the specified value.""" - notEqualTo: [Int] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: [Int] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection! - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: [Int] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Less than the specified value.""" - lessThan: [Int] + """Only read the last `n` values of the set.""" + last: Int - """Less than or equal to the specified value.""" - lessThanOrEqualTo: [Int] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Greater than the specified value.""" - greaterThan: [Int] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: [Int] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Contains the specified list of values.""" - contains: [Int] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Contained by the specified list of values.""" - containedBy: [Int] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Overlaps the specified list of values.""" - overlaps: [Int] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection! - """Any array item is equal to the specified value.""" - anyEqualTo: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Any array item is not equal to the specified value.""" - anyNotEqualTo: Int + """Only read the last `n` values of the set.""" + last: Int - """Any array item is less than the specified value.""" - anyLessThan: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Any array item is less than or equal to the specified value.""" - anyLessThanOrEqualTo: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Any array item is greater than the specified value.""" - anyGreaterThan: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Any array item is greater than or equal to the specified value.""" - anyGreaterThanOrEqualTo: Int -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationStatusFilter { - """ - Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationStatusFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationStatusFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection! - """ - No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationStatusFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `status` field.""" - status: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `changeReason` field.""" - changeReason: StringFilter - - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `attachmentsByApplicationStatusId` relation.""" - attachmentsByApplicationStatusId: ApplicationStatusToManyAttachmentFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `attachmentsByApplicationStatusId` exist.""" - attachmentsByApplicationStatusIdExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationStatusTypeByStatus` relation.""" - applicationStatusTypeByStatus: ApplicationStatusTypeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `applicationStatusTypeByStatus` exists.""" - applicationStatusTypeByStatusExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for all expressions in this list.""" - and: [ApplicationStatusFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for any expressions in this list.""" - or: [ApplicationStatusFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection! - """Negates the expression.""" - not: ApplicationStatusFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusToManyAttachmentFilter { - """ - Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AttachmentFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AttachmentFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AttachmentFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input AttachmentFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `file` field.""" - file: UUIDFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `description` field.""" - description: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `fileName` field.""" - fileName: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `fileType` field.""" - fileType: StringFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `fileSize` field.""" - fileSize: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationStatusId` field.""" - applicationStatusId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Filter by the object’s `applicationStatusByApplicationStatusId` relation. - """ - applicationStatusByApplicationStatusId: ApplicationStatusFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `applicationStatusByApplicationStatusId` exists.""" - applicationStatusByApplicationStatusIdExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection! - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for all expressions in this list.""" - and: [AttachmentFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for any expressions in this list.""" - or: [AttachmentFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Negates the expression.""" - not: AttachmentFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against `ApplicationStatusType` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `description` field.""" - description: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `visibleByApplicant` field.""" - visibleByApplicant: BooleanFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `statusOrder` field.""" - statusOrder: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `visibleByAnalyst` field.""" - visibleByAnalyst: BooleanFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `applicationStatusesByStatus` relation.""" - applicationStatusesByStatus: ApplicationStatusTypeToManyApplicationStatusFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Some related `applicationStatusesByStatus` exist.""" - applicationStatusesByStatusExist: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for all expressions in this list.""" - and: [ApplicationStatusTypeFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for any expressions in this list.""" - or: [ApplicationStatusTypeFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Negates the expression.""" - not: ApplicationStatusTypeFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection! -""" -A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationStatusTypeToManyApplicationStatusFilter { - """ - Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationStatusFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationStatusFilter + """Only read the last `n` values of the set.""" + last: Int - """ - No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationStatusFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyAttachmentFilter { - """ - Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AttachmentFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AttachmentFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AttachmentFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationFormDataFilter { - """ - Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationFormDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationFormDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection! - """ - No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationFormDataFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationFormDataFilter { - """Filter by the object’s `formDataId` field.""" - formDataId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `formDataByFormDataId` relation.""" - formDataByFormDataId: FormDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for all expressions in this list.""" - and: [ApplicationFormDataFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for any expressions in this list.""" - or: [ApplicationFormDataFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Negates the expression.""" - not: ApplicationFormDataFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection! -""" -A filter to be used against `FormData` object types. All fields are combined with a logical ‘and.’ -""" -input FormDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `lastEditedPage` field.""" - lastEditedPage: StringFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `formDataStatusTypeId` field.""" - formDataStatusTypeId: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationApplicationIdAndEmailRecordId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `formSchemaId` field.""" - formSchemaId: IntFilter - - """Filter by the object’s `reasonForChange` field.""" - reasonForChange: StringFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `isEditable` field.""" - isEditable: BooleanFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationFormDataByFormDataId` relation.""" - applicationFormDataByFormDataId: FormDataToManyApplicationFormDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationFormDataByFormDataId` exist.""" - applicationFormDataByFormDataIdExist: Boolean + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] - """ - Filter by the object’s `formDataStatusTypeByFormDataStatusTypeId` relation. - """ - formDataStatusTypeByFormDataStatusTypeId: FormDataStatusTypeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: EmailRecordCondition - """A related `formDataStatusTypeByFormDataStatusTypeId` exists.""" - formDataStatusTypeByFormDataStatusTypeIdExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: EmailRecordFilter + ): ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection! - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `formByFormSchemaId` relation.""" - formByFormSchemaId: FormFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `formByFormSchemaId` exists.""" - formByFormSchemaIdExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection! - """Checks for all expressions in this list.""" - and: [FormDataFilter!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for any expressions in this list.""" - or: [FormDataFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Negates the expression.""" - not: FormDataFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against JSON fields. All fields are combined with a logical ‘and.’ -""" -input JSONFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Equal to the specified value.""" - equalTo: JSON + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Not equal to the specified value.""" - notEqualTo: JSON + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: JSON + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: JSON + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection! - """Included in the specified list.""" - in: [JSON!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Not included in the specified list.""" - notIn: [JSON!] + """Only read the last `n` values of the set.""" + last: Int - """Less than the specified value.""" - lessThan: JSON + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Less than or equal to the specified value.""" - lessThanOrEqualTo: JSON + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Greater than the specified value.""" - greaterThan: JSON + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: JSON + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Contains the specified JSON.""" - contains: JSON + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Contains the specified key.""" - containsKey: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! - """Contains all of the specified keys.""" - containsAllKeys: [String!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPackageApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Contains any of the specified keys.""" - containsAnyKeys: [String!] + """Only read the last `n` values of the set.""" + last: Int - """Contained by the specified JSON.""" - containedBy: JSON -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). -""" -scalar JSON + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ -""" -input FormDataToManyApplicationFormDataFilter { - """ - Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationFormDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationFormDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationFormDataFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against `FormDataStatusType` object types. All fields are combined with a logical ‘and.’ -""" -input FormDataStatusTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `description` field.""" - description: StringFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPackageApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `formDataByFormDataStatusTypeId` relation.""" - formDataByFormDataStatusTypeId: FormDataStatusTypeToManyFormDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `formDataByFormDataStatusTypeId` exist.""" - formDataByFormDataStatusTypeIdExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for all expressions in this list.""" - and: [FormDataStatusTypeFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for any expressions in this list.""" - or: [FormDataStatusTypeFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Negates the expression.""" - not: FormDataStatusTypeFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ -""" -input FormDataStatusTypeToManyFormDataFilter { - """ - Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: FormDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: FormDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection! - """ - No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: FormDataFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPackageApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against `Form` object types. All fields are combined with a logical ‘and.’ -""" -input FormFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `slug` field.""" - slug: StringFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `jsonSchema` field.""" - jsonSchema: JSONFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `description` field.""" - description: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `formType` field.""" - formType: StringFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `formDataByFormSchemaId` relation.""" - formDataByFormSchemaId: FormToManyFormDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `formDataByFormSchemaId` exist.""" - formDataByFormSchemaIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `formTypeByFormType` relation.""" - formTypeByFormType: FormTypeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `formTypeByFormType` exists.""" - formTypeByFormTypeExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Checks for all expressions in this list.""" - and: [FormFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for any expressions in this list.""" - or: [FormFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Negates the expression.""" - not: FormFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ -""" -input FormToManyFormDataFilter { - """ - Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: FormDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: FormDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: FormDataFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection! -""" -A filter to be used against `FormType` object types. All fields are combined with a logical ‘and.’ -""" -input FormTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `description` field.""" - description: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `formsByFormType` relation.""" - formsByFormType: FormTypeToManyFormFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `formsByFormType` exist.""" - formsByFormTypeExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for all expressions in this list.""" - and: [FormTypeFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for any expressions in this list.""" - or: [FormTypeFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Negates the expression.""" - not: FormTypeFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against many `Form` object types. All fields are combined with a logical ‘and.’ -""" -input FormTypeToManyFormFilter { - """ - Every related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: FormFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection! - """ - Some related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: FormFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: FormFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationAnalystLeadFilter { - """ - Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnalystLeadFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnalystLeadFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnalystLeadFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationAnalystLeadFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `analystId` field.""" - analystId: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentApplicationIdAndApplicationStatusId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection! - """Filter by the object’s `analystByAnalystId` relation.""" - analystByAnalystId: AnalystFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `analystByAnalystId` exists.""" - analystByAnalystIdExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection! - """Checks for all expressions in this list.""" - and: [ApplicationAnalystLeadFilter!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for any expressions in this list.""" - or: [ApplicationAnalystLeadFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Negates the expression.""" - not: ApplicationAnalystLeadFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against `Analyst` object types. All fields are combined with a logical ‘and.’ -""" -input AnalystFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `givenName` field.""" - givenName: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `familyName` field.""" - familyName: StringFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `active` field.""" - active: BooleanFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `email` field.""" - email: StringFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationAnalystLeadsByAnalystId` relation.""" - applicationAnalystLeadsByAnalystId: AnalystToManyApplicationAnalystLeadFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `applicationAnalystLeadsByAnalystId` exist.""" - applicationAnalystLeadsByAnalystIdExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadApplicationIdAndAnalystId( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for all expressions in this list.""" - and: [AnalystFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AnalystCondition - """Checks for any expressions in this list.""" - or: [AnalystFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnalystFilter + ): ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection! - """Negates the expression.""" - not: AnalystFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input AnalystToManyApplicationAnalystLeadFilter { - """ - Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnalystLeadFilter + """Only read the last `n` values of the set.""" + last: Int - """ - Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnalystLeadFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnalystLeadFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationRfiDataFilter { - """ - Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationRfiDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationRfiDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationRfiDataFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationRfiDataFilter { - """Filter by the object’s `rfiDataId` field.""" - rfiDataId: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `rfiDataByRfiDataId` relation.""" - rfiDataByRfiDataId: RfiDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for all expressions in this list.""" - and: [ApplicationRfiDataFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for any expressions in this list.""" - or: [ApplicationRfiDataFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Negates the expression.""" - not: ApplicationRfiDataFilter -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A filter to be used against `RfiData` object types. All fields are combined with a logical ‘and.’ -""" -input RfiDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `rfiNumber` field.""" - rfiNumber: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `rfiDataStatusTypeId` field.""" - rfiDataStatusTypeId: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `applicationRfiDataByRfiDataId` relation.""" - applicationRfiDataByRfiDataId: RfiDataToManyApplicationRfiDataFilter + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementApplicationIdAndAnnouncementId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationRfiDataByRfiDataId` exist.""" - applicationRfiDataByRfiDataIdExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Filter by the object’s `rfiDataStatusTypeByRfiDataStatusTypeId` relation. - """ - rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusTypeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `rfiDataStatusTypeByRfiDataStatusTypeId` exists.""" - rfiDataStatusTypeByRfiDataStatusTypeIdExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AnnouncementCondition - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnnouncementFilter + ): ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection! - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Checks for all expressions in this list.""" - and: [RfiDataFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for any expressions in this list.""" - or: [RfiDataFilter!] + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Negates the expression.""" - not: RfiDataFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ -""" -input RfiDataToManyApplicationRfiDataFilter { - """ - Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationRfiDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationRfiDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationRfiDataFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection! -""" -A filter to be used against `RfiDataStatusType` object types. All fields are combined with a logical ‘and.’ -""" -input RfiDataStatusTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `description` field.""" - description: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `rfiDataByRfiDataStatusTypeId` relation.""" - rfiDataByRfiDataStatusTypeId: RfiDataStatusTypeToManyRfiDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `rfiDataByRfiDataStatusTypeId` exist.""" - rfiDataByRfiDataStatusTypeIdExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for all expressions in this list.""" - and: [RfiDataStatusTypeFilter!] + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for any expressions in this list.""" - or: [RfiDataStatusTypeFilter!] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Negates the expression.""" - not: RfiDataStatusTypeFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ -""" -input RfiDataStatusTypeToManyRfiDataFilter { - """ - Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: RfiDataFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection! - """ - Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: RfiDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: RfiDataFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyAssessmentDataFilter { - """ - Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AssessmentDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AssessmentDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AssessmentDataFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against `AssessmentData` object types. All fields are combined with a logical ‘and.’ -""" -input AssessmentDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `assessmentDataType` field.""" - assessmentDataType: StringFilter + """Reads and enables pagination through a set of `FormData`.""" + formDataByApplicationFormDataApplicationIdAndFormDataId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection! - """Filter by the object’s `assessmentTypeByAssessmentDataType` relation.""" - assessmentTypeByAssessmentDataType: AssessmentTypeFilter + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByApplicationRfiDataApplicationIdAndRfiDataId( + """Only read the first `n` values of the set.""" + first: Int - """A related `assessmentTypeByAssessmentDataType` exists.""" - assessmentTypeByAssessmentDataTypeExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: RfiDataCondition - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: RfiDataFilter + ): ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection! - """Checks for all expressions in this list.""" - and: [AssessmentDataFilter!] + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusApplicationIdAndStatus( + """Only read the first `n` values of the set.""" + first: Int - """Checks for any expressions in this list.""" - or: [AssessmentDataFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Negates the expression.""" - not: AssessmentDataFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against `AssessmentType` object types. All fields are combined with a logical ‘and.’ -""" -input AssessmentTypeFilter { - """Filter by the object’s `name` field.""" - name: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `description` field.""" - description: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `assessmentDataByAssessmentDataType` relation.""" - assessmentDataByAssessmentDataType: AssessmentTypeToManyAssessmentDataFilter + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] - """Some related `assessmentDataByAssessmentDataType` exist.""" - assessmentDataByAssessmentDataTypeExist: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusTypeCondition - """Checks for all expressions in this list.""" - and: [AssessmentTypeFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusTypeFilter + ): ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection! - """Checks for any expressions in this list.""" - or: [AssessmentTypeFilter!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Negates the expression.""" - not: AssessmentTypeFilter -} + """Only read the last `n` values of the set.""" + last: Int -""" -A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ -""" -input AssessmentTypeToManyAssessmentDataFilter { - """ - Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AssessmentDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AssessmentDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AssessmentDataFilter -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationPackageFilter { - """ - Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationPackageFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationPackageFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationPackageFilter -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection! -""" -A filter to be used against `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationPackageFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `package` field.""" - package: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection! - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Only read the last `n` values of the set.""" + last: Int - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection! - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for all expressions in this list.""" - and: [ApplicationPackageFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Checks for any expressions in this list.""" - or: [ApplicationPackageFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Negates the expression.""" - not: ApplicationPackageFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyConditionalApprovalDataFilter { - """ - Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ConditionalApprovalDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ConditionalApprovalDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ConditionalApprovalDataFilter -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A filter to be used against `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ -""" -input ConditionalApprovalDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection! - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection! - """Checks for all expressions in this list.""" - and: [ConditionalApprovalDataFilter!] + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByApplicationPendingChangeRequestApplicationIdAndCbcId( + """Only read the first `n` values of the set.""" + first: Int - """Checks for any expressions in this list.""" - or: [ConditionalApprovalDataFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Negates the expression.""" - not: ConditionalApprovalDataFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationGisDataFilter { - """ - Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationGisDataFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): ApplicationCbcsByApplicationPendingChangeRequestApplicationIdAndCbcIdManyToManyConnection! +} +""" +Table containing intake numbers and their respective open and closing dates +""" +type Intake implements Node { """ - Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - some: ApplicationGisDataFilter + id: ID! + + """Unique ID for each intake number""" + rowId: Int! + + """Open date and time for an intake number""" + openTimestamp: Datetime! + + """Close date and time for an intake number""" + closeTimestamp: Datetime! + + """Unique intake number for a set of CCBC IDs""" + ccbcIntakeNumber: Int! """ - No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + The name of the sequence used to generate CCBC ids. It is added via a trigger """ - none: ApplicationGisDataFilter -} + applicationNumberSeqName: String -""" -A filter to be used against `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationGisDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """created by user id""" + createdBy: Int - """Filter by the object’s `batchId` field.""" - batchId: IntFilter + """created at timestamp""" + createdAt: Datetime! - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """updated by user id""" + updatedBy: Int - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """updated at timestamp""" + updatedAt: Datetime! - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """archived by user id""" + archivedBy: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """archived at timestamp""" + archivedAt: Datetime - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + The counter_id used by the gapless_counter to generate a gapless intake id + """ + counterId: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """A description of the intake""" + description: String - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """A column to denote whether the intake is visible to the public""" + hidden: Boolean - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + A column that stores the code used to access the hidden intake. Only used on intakes that are hidden + """ + hiddenCode: UUID - """Filter by the object’s `gisDataByBatchId` relation.""" - gisDataByBatchId: GisDataFilter + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByCreatedBy: CcbcUser - """A related `gisDataByBatchId` exists.""" - gisDataByBatchIdExists: Boolean + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByUpdatedBy: CcbcUser - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByArchivedBy: CcbcUser - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Reads a single `GaplessCounter` that is related to this `Intake`.""" + gaplessCounterByCounterId: GaplessCounter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( + """Only read the first `n` values of the set.""" + first: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for all expressions in this list.""" - and: [ApplicationGisDataFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition - """Checks for any expressions in this list.""" - or: [ApplicationGisDataFilter!] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): ApplicationsConnection! - """Negates the expression.""" - not: ApplicationGisDataFilter -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A filter to be used against `GisData` object types. All fields are combined with a logical ‘and.’ -""" -input GisDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection! - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationGisDataByBatchId` relation.""" - applicationGisDataByBatchId: GisDataToManyApplicationGisDataFilter + """Only read the last `n` values of the set.""" + last: Int - """Some related `applicationGisDataByBatchId` exist.""" - applicationGisDataByBatchIdExist: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection! - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for all expressions in this list.""" - and: [GisDataFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Checks for any expressions in this list.""" - or: [GisDataFilter!] + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Negates the expression.""" - not: GisDataFilter -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ -""" -input GisDataToManyApplicationGisDataFilter { - """ - Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationGisDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationGisDataFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationGisDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection! } """ -A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ +A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). """ -input ApplicationToManyApplicationAnnouncementFilter { - """ - Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnnouncementFilter - - """ - Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnnouncementFilter +scalar UUID +"""Table to hold counter for creating gapless sequences""" +type GaplessCounter implements Node { """ - No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - none: ApplicationAnnouncementFilter -} + id: ID! -""" -A filter to be used against `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationAnnouncementFilter { - """Filter by the object’s `announcementId` field.""" - announcementId: IntFilter + """Primary key for the gapless counter""" + rowId: Int! - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Primary key for the gapless counter""" + counter: Int! - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `isPrimary` field.""" - isPrimary: BooleanFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition - """Filter by the object’s `historyOperation` field.""" - historyOperation: StringFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): IntakesConnection! - """Filter by the object’s `announcementByAnnouncementId` relation.""" - announcementByAnnouncementId: AnnouncementFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection! - """Checks for all expressions in this list.""" - and: [ApplicationAnnouncementFilter!] + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for any expressions in this list.""" - or: [ApplicationAnnouncementFilter!] + """Only read the last `n` values of the set.""" + last: Int - """Negates the expression.""" - not: ApplicationAnnouncementFilter -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A filter to be used against `Announcement` object types. All fields are combined with a logical ‘and.’ -""" -input AnnouncementFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcNumbers` field.""" - ccbcNumbers: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection! - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationAnnouncementsByAnnouncementId` relation. - """ - applicationAnnouncementsByAnnouncementId: AnnouncementToManyApplicationAnnouncementFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationAnnouncementsByAnnouncementId` exist.""" - applicationAnnouncementsByAnnouncementIdExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection! +} - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter +"""A connection to a list of `Intake` values.""" +type IntakesConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + A list of edges which contains the `Intake` and cursor to aid in pagination. + """ + edges: [IntakesEdge!]! - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter - - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean - - """Checks for all expressions in this list.""" - and: [AnnouncementFilter!] - - """Checks for any expressions in this list.""" - or: [AnnouncementFilter!] - - """Negates the expression.""" - not: AnnouncementFilter -} - -""" -A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ -""" -input AnnouncementToManyApplicationAnnouncementFilter { - """ - Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnnouncementFilter - - """ - Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnnouncementFilter + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnnouncementFilter + """The count of *all* `Intake` you could get from the connection.""" + totalCount: Int! } -""" -A filter to be used against many `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationGisAssessmentHhFilter { - """ - Every related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationGisAssessmentHhFilter - - """ - Some related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationGisAssessmentHhFilter +"""A `Intake` edge in the connection.""" +type IntakesEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - No related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationGisAssessmentHhFilter + """The `Intake` at the end of the edge.""" + node: Intake } -""" -A filter to be used against `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationGisAssessmentHhFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `eligible` field.""" - eligible: FloatFilter +"""A location in a connection that can be used for resuming pagination.""" +scalar Cursor - """Filter by the object’s `eligibleIndigenous` field.""" - eligibleIndigenous: FloatFilter +"""Information about pagination in a connection.""" +type PageInfo { + """When paginating forwards, are there more items?""" + hasNextPage: Boolean! - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """When paginating backwards, are there more items?""" + hasPreviousPage: Boolean! - """Checks for all expressions in this list.""" - and: [ApplicationGisAssessmentHhFilter!] + """When paginating backwards, the cursor to continue.""" + startCursor: Cursor - """Checks for any expressions in this list.""" - or: [ApplicationGisAssessmentHhFilter!] + """When paginating forwards, the cursor to continue.""" + endCursor: Cursor +} - """Negates the expression.""" - not: ApplicationGisAssessmentHhFilter +"""Methods to use when ordering `Intake`.""" +enum IntakesOrderBy { + NATURAL + ID_ASC + ID_DESC + OPEN_TIMESTAMP_ASC + OPEN_TIMESTAMP_DESC + CLOSE_TIMESTAMP_ASC + CLOSE_TIMESTAMP_DESC + CCBC_INTAKE_NUMBER_ASC + CCBC_INTAKE_NUMBER_DESC + APPLICATION_NUMBER_SEQ_NAME_ASC + APPLICATION_NUMBER_SEQ_NAME_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + COUNTER_ID_ASC + COUNTER_ID_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + HIDDEN_ASC + HIDDEN_DESC + HIDDEN_CODE_ASC + HIDDEN_CODE_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A filter to be used against Float fields. All fields are combined with a logical ‘and.’ +A condition to be used against `Intake` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input FloatFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean +input IntakeCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Equal to the specified value.""" - equalTo: Float + """Checks for equality with the object’s `openTimestamp` field.""" + openTimestamp: Datetime - """Not equal to the specified value.""" - notEqualTo: Float + """Checks for equality with the object’s `closeTimestamp` field.""" + closeTimestamp: Datetime + + """Checks for equality with the object’s `ccbcIntakeNumber` field.""" + ccbcIntakeNumber: Int """ - Not equal to the specified value, treating null like an ordinary value. + Checks for equality with the object’s `applicationNumberSeqName` field. """ - distinctFrom: Float + applicationNumberSeqName: String - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Float + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """Included in the specified list.""" - in: [Float!] + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Not included in the specified list.""" - notIn: [Float!] + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Less than the specified value.""" - lessThan: Float + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Float + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Greater than the specified value.""" - greaterThan: Float + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Float -} + """Checks for equality with the object’s `counterId` field.""" + counterId: Int -""" -A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationSowDataFilter { - """ - Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationSowDataFilter + """Checks for equality with the object’s `description` field.""" + description: String - """ - Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationSowDataFilter + """Checks for equality with the object’s `hidden` field.""" + hidden: Boolean - """ - No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationSowDataFilter + """Checks for equality with the object’s `hiddenCode` field.""" + hiddenCode: UUID } """ -A filter to be used against `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `Intake` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationSowDataFilter { +input IntakeFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `openTimestamp` field.""" + openTimestamp: DatetimeFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `closeTimestamp` field.""" + closeTimestamp: DatetimeFilter + + """Filter by the object’s `ccbcIntakeNumber` field.""" + ccbcIntakeNumber: IntFilter + + """Filter by the object’s `applicationNumberSeqName` field.""" + applicationNumberSeqName: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -21443,41 +22103,23 @@ input ApplicationSowDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `amendmentNumber` field.""" - amendmentNumber: IntFilter - - """Filter by the object’s `isAmendment` field.""" - isAmendment: BooleanFilter - - """Filter by the object’s `sowTab2SBySowId` relation.""" - sowTab2SBySowId: ApplicationSowDataToManySowTab2Filter - - """Some related `sowTab2SBySowId` exist.""" - sowTab2SBySowIdExist: Boolean - - """Filter by the object’s `sowTab1SBySowId` relation.""" - sowTab1SBySowId: ApplicationSowDataToManySowTab1Filter - - """Some related `sowTab1SBySowId` exist.""" - sowTab1SBySowIdExist: Boolean - - """Filter by the object’s `sowTab7SBySowId` relation.""" - sowTab7SBySowId: ApplicationSowDataToManySowTab7Filter + """Filter by the object’s `counterId` field.""" + counterId: IntFilter - """Some related `sowTab7SBySowId` exist.""" - sowTab7SBySowIdExist: Boolean + """Filter by the object’s `description` field.""" + description: StringFilter - """Filter by the object’s `sowTab8SBySowId` relation.""" - sowTab8SBySowId: ApplicationSowDataToManySowTab8Filter + """Filter by the object’s `hidden` field.""" + hidden: BooleanFilter - """Some related `sowTab8SBySowId` exist.""" - sowTab8SBySowIdExist: Boolean + """Filter by the object’s `hiddenCode` field.""" + hiddenCode: UUIDFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `applicationsByIntakeId` relation.""" + applicationsByIntakeId: IntakeToManyApplicationFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Some related `applicationsByIntakeId` exist.""" + applicationsByIntakeIdExist: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -21497,303 +22139,357 @@ input ApplicationSowDataFilter { """A related `ccbcUserByArchivedBy` exists.""" ccbcUserByArchivedByExists: Boolean + """Filter by the object’s `gaplessCounterByCounterId` relation.""" + gaplessCounterByCounterId: GaplessCounterFilter + + """A related `gaplessCounterByCounterId` exists.""" + gaplessCounterByCounterIdExists: Boolean + """Checks for all expressions in this list.""" - and: [ApplicationSowDataFilter!] + and: [IntakeFilter!] """Checks for any expressions in this list.""" - or: [ApplicationSowDataFilter!] + or: [IntakeFilter!] """Negates the expression.""" - not: ApplicationSowDataFilter + not: IntakeFilter } """ -A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ +A filter to be used against Int fields. All fields are combined with a logical ‘and.’ """ -input ApplicationSowDataToManySowTab2Filter { +input IntFilter { """ - Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - every: SowTab2Filter + isNull: Boolean - """ - Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab2Filter + """Equal to the specified value.""" + equalTo: Int + + """Not equal to the specified value.""" + notEqualTo: Int """ - No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + Not equal to the specified value, treating null like an ordinary value. """ - none: SowTab2Filter -} - -""" -A filter to be used against `SowTab2` object types. All fields are combined with a logical ‘and.’ -""" -input SowTab2Filter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `sowId` field.""" - sowId: IntFilter + distinctFrom: Int - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Int - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Included in the specified list.""" + in: [Int!] - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Not included in the specified list.""" + notIn: [Int!] - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Less than the specified value.""" + lessThan: Int - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Greater than the specified value.""" + greaterThan: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Int +} - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter +""" +A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ +""" +input DatetimeFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """Equal to the specified value.""" + equalTo: Datetime - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Not equal to the specified value.""" + notEqualTo: Datetime - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: Datetime - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Datetime - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Included in the specified list.""" + in: [Datetime!] - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Not included in the specified list.""" + notIn: [Datetime!] - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Less than the specified value.""" + lessThan: Datetime - """Checks for all expressions in this list.""" - and: [SowTab2Filter!] + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Datetime - """Checks for any expressions in this list.""" - or: [SowTab2Filter!] + """Greater than the specified value.""" + greaterThan: Datetime - """Negates the expression.""" - not: SowTab2Filter + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Datetime } """ -A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ +A filter to be used against String fields. All fields are combined with a logical ‘and.’ """ -input ApplicationSowDataToManySowTab1Filter { +input StringFilter { """ - Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - every: SowTab1Filter + isNull: Boolean - """ - Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab1Filter + """Equal to the specified value.""" + equalTo: String + + """Not equal to the specified value.""" + notEqualTo: String """ - No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + Not equal to the specified value, treating null like an ordinary value. """ - none: SowTab1Filter -} - -""" -A filter to be used against `SowTab1` object types. All fields are combined with a logical ‘and.’ -""" -input SowTab1Filter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + distinctFrom: String - """Filter by the object’s `sowId` field.""" - sowId: IntFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: String - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Included in the specified list.""" + in: [String!] - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Not included in the specified list.""" + notIn: [String!] - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Less than the specified value.""" + lessThan: String - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Less than or equal to the specified value.""" + lessThanOrEqualTo: String - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Greater than the specified value.""" + greaterThan: String - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: String - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Contains the specified string (case-sensitive).""" + includes: String - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter + """Does not contain the specified string (case-sensitive).""" + notIncludes: String - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """Contains the specified string (case-insensitive).""" + includesInsensitive: String - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Does not contain the specified string (case-insensitive).""" + notIncludesInsensitive: String - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Starts with the specified string (case-sensitive).""" + startsWith: String - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Does not start with the specified string (case-sensitive).""" + notStartsWith: String - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Starts with the specified string (case-insensitive).""" + startsWithInsensitive: String - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Does not start with the specified string (case-insensitive).""" + notStartsWithInsensitive: String - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Ends with the specified string (case-sensitive).""" + endsWith: String - """Checks for all expressions in this list.""" - and: [SowTab1Filter!] + """Does not end with the specified string (case-sensitive).""" + notEndsWith: String - """Checks for any expressions in this list.""" - or: [SowTab1Filter!] + """Ends with the specified string (case-insensitive).""" + endsWithInsensitive: String - """Negates the expression.""" - not: SowTab1Filter -} + """Does not end with the specified string (case-insensitive).""" + notEndsWithInsensitive: String -""" -A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationSowDataToManySowTab7Filter { """ - Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. """ - every: SowTab7Filter + like: String """ - Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. """ - some: SowTab7Filter + notLike: String """ - No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. """ - none: SowTab7Filter + likeInsensitive: String + + """ + Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. + """ + notLikeInsensitive: String + + """Equal to the specified value (case-insensitive).""" + equalToInsensitive: String + + """Not equal to the specified value (case-insensitive).""" + notEqualToInsensitive: String + + """ + Not equal to the specified value, treating null like an ordinary value (case-insensitive). + """ + distinctFromInsensitive: String + + """ + Equal to the specified value, treating null like an ordinary value (case-insensitive). + """ + notDistinctFromInsensitive: String + + """Included in the specified list (case-insensitive).""" + inInsensitive: [String!] + + """Not included in the specified list (case-insensitive).""" + notInInsensitive: [String!] + + """Less than the specified value (case-insensitive).""" + lessThanInsensitive: String + + """Less than or equal to the specified value (case-insensitive).""" + lessThanOrEqualToInsensitive: String + + """Greater than the specified value (case-insensitive).""" + greaterThanInsensitive: String + + """Greater than or equal to the specified value (case-insensitive).""" + greaterThanOrEqualToInsensitive: String } """ -A filter to be used against `SowTab7` object types. All fields are combined with a logical ‘and.’ +A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ """ -input SowTab7Filter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter +input BooleanFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """Filter by the object’s `sowId` field.""" - sowId: IntFilter + """Equal to the specified value.""" + equalTo: Boolean - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Not equal to the specified value.""" + notEqualTo: Boolean - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: Boolean - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Boolean - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Included in the specified list.""" + in: [Boolean!] - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Not included in the specified list.""" + notIn: [Boolean!] - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Less than the specified value.""" + lessThan: Boolean - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Boolean - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter + """Greater than the specified value.""" + greaterThan: Boolean - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Boolean +} - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter +""" +A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ +""" +input UUIDFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Equal to the specified value.""" + equalTo: UUID - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Not equal to the specified value.""" + notEqualTo: UUID - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: UUID - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: UUID - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Included in the specified list.""" + in: [UUID!] - """Checks for all expressions in this list.""" - and: [SowTab7Filter!] + """Not included in the specified list.""" + notIn: [UUID!] - """Checks for any expressions in this list.""" - or: [SowTab7Filter!] + """Less than the specified value.""" + lessThan: UUID - """Negates the expression.""" - not: SowTab7Filter + """Less than or equal to the specified value.""" + lessThanOrEqualTo: UUID + + """Greater than the specified value.""" + greaterThan: UUID + + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: UUID } """ -A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Application` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationSowDataToManySowTab8Filter { +input IntakeToManyApplicationFilter { """ - Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: SowTab8Filter + every: ApplicationFilter """ - Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: SowTab8Filter + some: ApplicationFilter """ - No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: SowTab8Filter + none: ApplicationFilter } """ -A filter to be used against `SowTab8` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `Application` object types. All fields are combined with a logical ‘and.’ """ -input SowTab8Filter { +input ApplicationFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `sowId` field.""" - sowId: IntFilter + """Filter by the object’s `ccbcNumber` field.""" + ccbcNumber: StringFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `owner` field.""" + owner: StringFilter + + """Filter by the object’s `intakeId` field.""" + intakeId: IntFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -21813,11 +22509,232 @@ input SowTab8Filter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `applicationSowDataBySowId` relation.""" - applicationSowDataBySowId: ApplicationSowDataFilter + """Filter by the object’s `amendmentNumbers` field.""" + amendmentNumbers: StringFilter - """A related `applicationSowDataBySowId` exists.""" - applicationSowDataBySowIdExists: Boolean + """Filter by the object’s `analystLead` field.""" + analystLead: StringFilter + + """Filter by the object’s `analystStatus` field.""" + analystStatus: StringFilter + + """Filter by the object’s `externalStatus` field.""" + externalStatus: StringFilter + + """Filter by the object’s `hasRfiOpen` field.""" + hasRfiOpen: BooleanFilter + + """Filter by the object’s `intakeNumber` field.""" + intakeNumber: IntFilter + + """Filter by the object’s `internalDescription` field.""" + internalDescription: StringFilter + + """Filter by the object’s `organizationName` field.""" + organizationName: StringFilter + + """Filter by the object’s `package` field.""" + package: IntFilter + + """Filter by the object’s `projectName` field.""" + projectName: StringFilter + + """Filter by the object’s `status` field.""" + status: StringFilter + + """Filter by the object’s `statusOrder` field.""" + statusOrder: IntFilter + + """Filter by the object’s `statusSortFilter` field.""" + statusSortFilter: StringFilter + + """Filter by the object’s `zone` field.""" + zone: IntFilter + + """Filter by the object’s `zones` field.""" + zones: IntListFilter + + """Filter by the object’s `assessmentDataByApplicationId` relation.""" + assessmentDataByApplicationId: ApplicationToManyAssessmentDataFilter + + """Some related `assessmentDataByApplicationId` exist.""" + assessmentDataByApplicationIdExist: Boolean + + """ + Filter by the object’s `conditionalApprovalDataByApplicationId` relation. + """ + conditionalApprovalDataByApplicationId: ApplicationToManyConditionalApprovalDataFilter + + """Some related `conditionalApprovalDataByApplicationId` exist.""" + conditionalApprovalDataByApplicationIdExist: Boolean + + """ + Filter by the object’s `applicationGisAssessmentHhsByApplicationId` relation. + """ + applicationGisAssessmentHhsByApplicationId: ApplicationToManyApplicationGisAssessmentHhFilter + + """Some related `applicationGisAssessmentHhsByApplicationId` exist.""" + applicationGisAssessmentHhsByApplicationIdExist: Boolean + + """Filter by the object’s `applicationGisDataByApplicationId` relation.""" + applicationGisDataByApplicationId: ApplicationToManyApplicationGisDataFilter + + """Some related `applicationGisDataByApplicationId` exist.""" + applicationGisDataByApplicationIdExist: Boolean + + """ + Filter by the object’s `projectInformationDataByApplicationId` relation. + """ + projectInformationDataByApplicationId: ApplicationToManyProjectInformationDataFilter + + """Some related `projectInformationDataByApplicationId` exist.""" + projectInformationDataByApplicationIdExist: Boolean + + """ + Filter by the object’s `applicationClaimsDataByApplicationId` relation. + """ + applicationClaimsDataByApplicationId: ApplicationToManyApplicationClaimsDataFilter + + """Some related `applicationClaimsDataByApplicationId` exist.""" + applicationClaimsDataByApplicationIdExist: Boolean + + """ + Filter by the object’s `applicationClaimsExcelDataByApplicationId` relation. + """ + applicationClaimsExcelDataByApplicationId: ApplicationToManyApplicationClaimsExcelDataFilter + + """Some related `applicationClaimsExcelDataByApplicationId` exist.""" + applicationClaimsExcelDataByApplicationIdExist: Boolean + + """ + Filter by the object’s `applicationCommunityProgressReportDataByApplicationId` relation. + """ + applicationCommunityProgressReportDataByApplicationId: ApplicationToManyApplicationCommunityProgressReportDataFilter + + """ + Some related `applicationCommunityProgressReportDataByApplicationId` exist. + """ + applicationCommunityProgressReportDataByApplicationIdExist: Boolean + + """ + Filter by the object’s `applicationCommunityReportExcelDataByApplicationId` relation. + """ + applicationCommunityReportExcelDataByApplicationId: ApplicationToManyApplicationCommunityReportExcelDataFilter + + """ + Some related `applicationCommunityReportExcelDataByApplicationId` exist. + """ + applicationCommunityReportExcelDataByApplicationIdExist: Boolean + + """ + Filter by the object’s `applicationInternalDescriptionsByApplicationId` relation. + """ + applicationInternalDescriptionsByApplicationId: ApplicationToManyApplicationInternalDescriptionFilter + + """Some related `applicationInternalDescriptionsByApplicationId` exist.""" + applicationInternalDescriptionsByApplicationIdExist: Boolean + + """ + Filter by the object’s `applicationMilestoneDataByApplicationId` relation. + """ + applicationMilestoneDataByApplicationId: ApplicationToManyApplicationMilestoneDataFilter + + """Some related `applicationMilestoneDataByApplicationId` exist.""" + applicationMilestoneDataByApplicationIdExist: Boolean + + """ + Filter by the object’s `applicationMilestoneExcelDataByApplicationId` relation. + """ + applicationMilestoneExcelDataByApplicationId: ApplicationToManyApplicationMilestoneExcelDataFilter + + """Some related `applicationMilestoneExcelDataByApplicationId` exist.""" + applicationMilestoneExcelDataByApplicationIdExist: Boolean + + """Filter by the object’s `applicationSowDataByApplicationId` relation.""" + applicationSowDataByApplicationId: ApplicationToManyApplicationSowDataFilter + + """Some related `applicationSowDataByApplicationId` exist.""" + applicationSowDataByApplicationIdExist: Boolean + + """Filter by the object’s `changeRequestDataByApplicationId` relation.""" + changeRequestDataByApplicationId: ApplicationToManyChangeRequestDataFilter + + """Some related `changeRequestDataByApplicationId` exist.""" + changeRequestDataByApplicationIdExist: Boolean + + """Filter by the object’s `notificationsByApplicationId` relation.""" + notificationsByApplicationId: ApplicationToManyNotificationFilter + + """Some related `notificationsByApplicationId` exist.""" + notificationsByApplicationIdExist: Boolean + + """Filter by the object’s `applicationPackagesByApplicationId` relation.""" + applicationPackagesByApplicationId: ApplicationToManyApplicationPackageFilter + + """Some related `applicationPackagesByApplicationId` exist.""" + applicationPackagesByApplicationIdExist: Boolean + + """ + Filter by the object’s `applicationProjectTypesByApplicationId` relation. + """ + applicationProjectTypesByApplicationId: ApplicationToManyApplicationProjectTypeFilter + + """Some related `applicationProjectTypesByApplicationId` exist.""" + applicationProjectTypesByApplicationIdExist: Boolean + + """Filter by the object’s `attachmentsByApplicationId` relation.""" + attachmentsByApplicationId: ApplicationToManyAttachmentFilter + + """Some related `attachmentsByApplicationId` exist.""" + attachmentsByApplicationIdExist: Boolean + + """ + Filter by the object’s `applicationAnalystLeadsByApplicationId` relation. + """ + applicationAnalystLeadsByApplicationId: ApplicationToManyApplicationAnalystLeadFilter + + """Some related `applicationAnalystLeadsByApplicationId` exist.""" + applicationAnalystLeadsByApplicationIdExist: Boolean + + """ + Filter by the object’s `applicationAnnouncementsByApplicationId` relation. + """ + applicationAnnouncementsByApplicationId: ApplicationToManyApplicationAnnouncementFilter + + """Some related `applicationAnnouncementsByApplicationId` exist.""" + applicationAnnouncementsByApplicationIdExist: Boolean + + """Filter by the object’s `applicationFormDataByApplicationId` relation.""" + applicationFormDataByApplicationId: ApplicationToManyApplicationFormDataFilter + + """Some related `applicationFormDataByApplicationId` exist.""" + applicationFormDataByApplicationIdExist: Boolean + + """Filter by the object’s `applicationRfiDataByApplicationId` relation.""" + applicationRfiDataByApplicationId: ApplicationToManyApplicationRfiDataFilter + + """Some related `applicationRfiDataByApplicationId` exist.""" + applicationRfiDataByApplicationIdExist: Boolean + + """Filter by the object’s `applicationStatusesByApplicationId` relation.""" + applicationStatusesByApplicationId: ApplicationToManyApplicationStatusFilter + + """Some related `applicationStatusesByApplicationId` exist.""" + applicationStatusesByApplicationIdExist: Boolean + + """ + Filter by the object’s `applicationPendingChangeRequestsByApplicationId` relation. + """ + applicationPendingChangeRequestsByApplicationId: ApplicationToManyApplicationPendingChangeRequestFilter + + """Some related `applicationPendingChangeRequestsByApplicationId` exist.""" + applicationPendingChangeRequestsByApplicationIdExist: Boolean + + """Filter by the object’s `intakeByIntakeId` relation.""" + intakeByIntakeId: IntakeFilter + + """A related `intakeByIntakeId` exists.""" + intakeByIntakeIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -21838,39 +22755,102 @@ input SowTab8Filter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [SowTab8Filter!] + and: [ApplicationFilter!] """Checks for any expressions in this list.""" - or: [SowTab8Filter!] + or: [ApplicationFilter!] """Negates the expression.""" - not: SowTab8Filter + not: ApplicationFilter } """ -A filter to be used against many `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against Int List fields. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyProjectInformationDataFilter { +input IntListFilter { """ - Every related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - every: ProjectInformationDataFilter + isNull: Boolean + + """Equal to the specified value.""" + equalTo: [Int] + + """Not equal to the specified value.""" + notEqualTo: [Int] """ - Some related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Not equal to the specified value, treating null like an ordinary value. """ - some: ProjectInformationDataFilter + distinctFrom: [Int] + + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: [Int] + + """Less than the specified value.""" + lessThan: [Int] + + """Less than or equal to the specified value.""" + lessThanOrEqualTo: [Int] + + """Greater than the specified value.""" + greaterThan: [Int] + + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: [Int] + + """Contains the specified list of values.""" + contains: [Int] + + """Contained by the specified list of values.""" + containedBy: [Int] + """Overlaps the specified list of values.""" + overlaps: [Int] + + """Any array item is equal to the specified value.""" + anyEqualTo: Int + + """Any array item is not equal to the specified value.""" + anyNotEqualTo: Int + + """Any array item is less than the specified value.""" + anyLessThan: Int + + """Any array item is less than or equal to the specified value.""" + anyLessThanOrEqualTo: Int + + """Any array item is greater than the specified value.""" + anyGreaterThan: Int + + """Any array item is greater than or equal to the specified value.""" + anyGreaterThanOrEqualTo: Int +} + +""" +A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyAssessmentDataFilter { """ - No related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ProjectInformationDataFilter + every: AssessmentDataFilter + + """ + Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AssessmentDataFilter + + """ + No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AssessmentDataFilter } """ -A filter to be used against `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `AssessmentData` object types. All fields are combined with a logical ‘and.’ """ -input ProjectInformationDataFilter { +input AssessmentDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter @@ -21880,6 +22860,9 @@ input ProjectInformationDataFilter { """Filter by the object’s `jsonData` field.""" jsonData: JSONFilter + """Filter by the object’s `assessmentDataType` field.""" + assessmentDataType: StringFilter + """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -21901,8 +22884,11 @@ input ProjectInformationDataFilter { """Filter by the object’s `applicationByApplicationId` relation.""" applicationByApplicationId: ApplicationFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Filter by the object’s `assessmentTypeByAssessmentDataType` relation.""" + assessmentTypeByAssessmentDataType: AssessmentTypeFilter + + """A related `assessmentTypeByAssessmentDataType` exists.""" + assessmentTypeByAssessmentDataTypeExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -21923,135 +22909,141 @@ input ProjectInformationDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ProjectInformationDataFilter!] + and: [AssessmentDataFilter!] """Checks for any expressions in this list.""" - or: [ProjectInformationDataFilter!] + or: [AssessmentDataFilter!] """Negates the expression.""" - not: ProjectInformationDataFilter + not: AssessmentDataFilter } """ -A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against JSON fields. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyChangeRequestDataFilter { +input JSONFilter { """ - Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Is null (if `true` is specified) or is not null (if `false` is specified). """ - every: ChangeRequestDataFilter + isNull: Boolean - """ - Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ChangeRequestDataFilter + """Equal to the specified value.""" + equalTo: JSON + + """Not equal to the specified value.""" + notEqualTo: JSON """ - No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Not equal to the specified value, treating null like an ordinary value. """ - none: ChangeRequestDataFilter -} - -""" -A filter to be used against `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ -""" -input ChangeRequestDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + distinctFrom: JSON - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: JSON - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Included in the specified list.""" + in: [JSON!] - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Not included in the specified list.""" + notIn: [JSON!] - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Less than the specified value.""" + lessThan: JSON - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Less than or equal to the specified value.""" + lessThanOrEqualTo: JSON - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Greater than the specified value.""" + greaterThan: JSON - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: JSON - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Contains the specified JSON.""" + contains: JSON - """Filter by the object’s `amendmentNumber` field.""" - amendmentNumber: IntFilter + """Contains the specified key.""" + containsKey: String - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Contains all of the specified keys.""" + containsAllKeys: [String!] - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Contains any of the specified keys.""" + containsAnyKeys: [String!] - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Contained by the specified JSON.""" + containedBy: JSON +} - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean +""" +A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). +""" +scalar JSON - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter +""" +A filter to be used against `AssessmentType` object types. All fields are combined with a logical ‘and.’ +""" +input AssessmentTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Filter by the object’s `description` field.""" + description: StringFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Filter by the object’s `assessmentDataByAssessmentDataType` relation.""" + assessmentDataByAssessmentDataType: AssessmentTypeToManyAssessmentDataFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Some related `assessmentDataByAssessmentDataType` exist.""" + assessmentDataByAssessmentDataTypeExist: Boolean """Checks for all expressions in this list.""" - and: [ChangeRequestDataFilter!] + and: [AssessmentTypeFilter!] """Checks for any expressions in this list.""" - or: [ChangeRequestDataFilter!] + or: [AssessmentTypeFilter!] """Negates the expression.""" - not: ChangeRequestDataFilter + not: AssessmentTypeFilter } """ -A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyApplicationCommunityProgressReportDataFilter { +input AssessmentTypeToManyAssessmentDataFilter { """ - Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationCommunityProgressReportDataFilter + every: AssessmentDataFilter """ - Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationCommunityProgressReportDataFilter + some: AssessmentDataFilter """ - No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationCommunityProgressReportDataFilter + none: AssessmentDataFilter } """ -A filter to be used against `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `CcbcUser` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationCommunityProgressReportDataFilter { +input CcbcUserFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `sessionSub` field.""" + sessionSub: StringFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `givenName` field.""" + givenName: StringFilter + + """Filter by the object’s `familyName` field.""" + familyName: StringFilter + + """Filter by the object’s `emailAddress` field.""" + emailAddress: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -22071,721 +23063,732 @@ input ApplicationCommunityProgressReportDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `excelDataId` field.""" - excelDataId: IntFilter + """Filter by the object’s `externalAnalyst` field.""" + externalAnalyst: BooleanFilter - """Filter by the object’s `historyOperation` field.""" - historyOperation: StringFilter + """Filter by the object’s `applicationsByCreatedBy` relation.""" + applicationsByCreatedBy: CcbcUserToManyApplicationFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Some related `applicationsByCreatedBy` exist.""" + applicationsByCreatedByExist: Boolean - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Filter by the object’s `applicationsByUpdatedBy` relation.""" + applicationsByUpdatedBy: CcbcUserToManyApplicationFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Some related `applicationsByUpdatedBy` exist.""" + applicationsByUpdatedByExist: Boolean - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Filter by the object’s `applicationsByArchivedBy` relation.""" + applicationsByArchivedBy: CcbcUserToManyApplicationFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Some related `applicationsByArchivedBy` exist.""" + applicationsByArchivedByExist: Boolean - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Filter by the object’s `assessmentDataByCreatedBy` relation.""" + assessmentDataByCreatedBy: CcbcUserToManyAssessmentDataFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Some related `assessmentDataByCreatedBy` exist.""" + assessmentDataByCreatedByExist: Boolean - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Filter by the object’s `assessmentDataByUpdatedBy` relation.""" + assessmentDataByUpdatedBy: CcbcUserToManyAssessmentDataFilter - """Checks for all expressions in this list.""" - and: [ApplicationCommunityProgressReportDataFilter!] + """Some related `assessmentDataByUpdatedBy` exist.""" + assessmentDataByUpdatedByExist: Boolean - """Checks for any expressions in this list.""" - or: [ApplicationCommunityProgressReportDataFilter!] + """Filter by the object’s `assessmentDataByArchivedBy` relation.""" + assessmentDataByArchivedBy: CcbcUserToManyAssessmentDataFilter - """Negates the expression.""" - not: ApplicationCommunityProgressReportDataFilter -} + """Some related `assessmentDataByArchivedBy` exist.""" + assessmentDataByArchivedByExist: Boolean -""" -A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationCommunityReportExcelDataFilter { - """ - Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationCommunityReportExcelDataFilter + """Filter by the object’s `announcementsByCreatedBy` relation.""" + announcementsByCreatedBy: CcbcUserToManyAnnouncementFilter - """ - Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationCommunityReportExcelDataFilter + """Some related `announcementsByCreatedBy` exist.""" + announcementsByCreatedByExist: Boolean - """ - No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationCommunityReportExcelDataFilter -} + """Filter by the object’s `announcementsByUpdatedBy` relation.""" + announcementsByUpdatedBy: CcbcUserToManyAnnouncementFilter -""" -A filter to be used against `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationCommunityReportExcelDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Some related `announcementsByUpdatedBy` exist.""" + announcementsByUpdatedByExist: Boolean - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `announcementsByArchivedBy` relation.""" + announcementsByArchivedBy: CcbcUserToManyAnnouncementFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Some related `announcementsByArchivedBy` exist.""" + announcementsByArchivedByExist: Boolean - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Filter by the object’s `conditionalApprovalDataByCreatedBy` relation.""" + conditionalApprovalDataByCreatedBy: CcbcUserToManyConditionalApprovalDataFilter - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Some related `conditionalApprovalDataByCreatedBy` exist.""" + conditionalApprovalDataByCreatedByExist: Boolean - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Filter by the object’s `conditionalApprovalDataByUpdatedBy` relation.""" + conditionalApprovalDataByUpdatedBy: CcbcUserToManyConditionalApprovalDataFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Some related `conditionalApprovalDataByUpdatedBy` exist.""" + conditionalApprovalDataByUpdatedByExist: Boolean - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Filter by the object’s `conditionalApprovalDataByArchivedBy` relation.""" + conditionalApprovalDataByArchivedBy: CcbcUserToManyConditionalApprovalDataFilter - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Some related `conditionalApprovalDataByArchivedBy` exist.""" + conditionalApprovalDataByArchivedByExist: Boolean - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `formDataByCreatedBy` relation.""" + formDataByCreatedBy: CcbcUserToManyFormDataFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Some related `formDataByCreatedBy` exist.""" + formDataByCreatedByExist: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Filter by the object’s `formDataByUpdatedBy` relation.""" + formDataByUpdatedBy: CcbcUserToManyFormDataFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Some related `formDataByUpdatedBy` exist.""" + formDataByUpdatedByExist: Boolean - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Filter by the object’s `formDataByArchivedBy` relation.""" + formDataByArchivedBy: CcbcUserToManyFormDataFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Some related `formDataByArchivedBy` exist.""" + formDataByArchivedByExist: Boolean - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Filter by the object’s `applicationGisDataByCreatedBy` relation.""" + applicationGisDataByCreatedBy: CcbcUserToManyApplicationGisDataFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Some related `applicationGisDataByCreatedBy` exist.""" + applicationGisDataByCreatedByExist: Boolean - """Checks for all expressions in this list.""" - and: [ApplicationCommunityReportExcelDataFilter!] + """Filter by the object’s `applicationGisDataByUpdatedBy` relation.""" + applicationGisDataByUpdatedBy: CcbcUserToManyApplicationGisDataFilter - """Checks for any expressions in this list.""" - or: [ApplicationCommunityReportExcelDataFilter!] + """Some related `applicationGisDataByUpdatedBy` exist.""" + applicationGisDataByUpdatedByExist: Boolean - """Negates the expression.""" - not: ApplicationCommunityReportExcelDataFilter -} + """Filter by the object’s `applicationGisDataByArchivedBy` relation.""" + applicationGisDataByArchivedBy: CcbcUserToManyApplicationGisDataFilter -""" -A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationClaimsDataFilter { - """ - Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationClaimsDataFilter + """Some related `applicationGisDataByArchivedBy` exist.""" + applicationGisDataByArchivedByExist: Boolean - """ - Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationClaimsDataFilter + """Filter by the object’s `projectInformationDataByCreatedBy` relation.""" + projectInformationDataByCreatedBy: CcbcUserToManyProjectInformationDataFilter - """ - No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationClaimsDataFilter -} + """Some related `projectInformationDataByCreatedBy` exist.""" + projectInformationDataByCreatedByExist: Boolean -""" -A filter to be used against `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationClaimsDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Filter by the object’s `projectInformationDataByUpdatedBy` relation.""" + projectInformationDataByUpdatedBy: CcbcUserToManyProjectInformationDataFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Some related `projectInformationDataByUpdatedBy` exist.""" + projectInformationDataByUpdatedByExist: Boolean - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `projectInformationDataByArchivedBy` relation.""" + projectInformationDataByArchivedBy: CcbcUserToManyProjectInformationDataFilter - """Filter by the object’s `excelDataId` field.""" - excelDataId: IntFilter + """Some related `projectInformationDataByArchivedBy` exist.""" + projectInformationDataByArchivedByExist: Boolean - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Filter by the object’s `rfiDataByCreatedBy` relation.""" + rfiDataByCreatedBy: CcbcUserToManyRfiDataFilter - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Some related `rfiDataByCreatedBy` exist.""" + rfiDataByCreatedByExist: Boolean - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Filter by the object’s `rfiDataByUpdatedBy` relation.""" + rfiDataByUpdatedBy: CcbcUserToManyRfiDataFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Some related `rfiDataByUpdatedBy` exist.""" + rfiDataByUpdatedByExist: Boolean - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Filter by the object’s `rfiDataByArchivedBy` relation.""" + rfiDataByArchivedBy: CcbcUserToManyRfiDataFilter - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Some related `rfiDataByArchivedBy` exist.""" + rfiDataByArchivedByExist: Boolean - """Filter by the object’s `historyOperation` field.""" - historyOperation: StringFilter + """Filter by the object’s `intakesByCreatedBy` relation.""" + intakesByCreatedBy: CcbcUserToManyIntakeFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Some related `intakesByCreatedBy` exist.""" + intakesByCreatedByExist: Boolean - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Filter by the object’s `intakesByUpdatedBy` relation.""" + intakesByUpdatedBy: CcbcUserToManyIntakeFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Some related `intakesByUpdatedBy` exist.""" + intakesByUpdatedByExist: Boolean - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Filter by the object’s `intakesByArchivedBy` relation.""" + intakesByArchivedBy: CcbcUserToManyIntakeFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Some related `intakesByArchivedBy` exist.""" + intakesByArchivedByExist: Boolean - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Filter by the object’s `applicationClaimsDataByCreatedBy` relation.""" + applicationClaimsDataByCreatedBy: CcbcUserToManyApplicationClaimsDataFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Some related `applicationClaimsDataByCreatedBy` exist.""" + applicationClaimsDataByCreatedByExist: Boolean - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Filter by the object’s `applicationClaimsDataByUpdatedBy` relation.""" + applicationClaimsDataByUpdatedBy: CcbcUserToManyApplicationClaimsDataFilter - """Checks for all expressions in this list.""" - and: [ApplicationClaimsDataFilter!] + """Some related `applicationClaimsDataByUpdatedBy` exist.""" + applicationClaimsDataByUpdatedByExist: Boolean - """Checks for any expressions in this list.""" - or: [ApplicationClaimsDataFilter!] + """Filter by the object’s `applicationClaimsDataByArchivedBy` relation.""" + applicationClaimsDataByArchivedBy: CcbcUserToManyApplicationClaimsDataFilter - """Negates the expression.""" - not: ApplicationClaimsDataFilter -} + """Some related `applicationClaimsDataByArchivedBy` exist.""" + applicationClaimsDataByArchivedByExist: Boolean -""" -A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationClaimsExcelDataFilter { """ - Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationClaimsExcelDataByCreatedBy` relation. """ - every: ApplicationClaimsExcelDataFilter + applicationClaimsExcelDataByCreatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter + + """Some related `applicationClaimsExcelDataByCreatedBy` exist.""" + applicationClaimsExcelDataByCreatedByExist: Boolean """ - Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationClaimsExcelDataByUpdatedBy` relation. """ - some: ApplicationClaimsExcelDataFilter + applicationClaimsExcelDataByUpdatedBy: CcbcUserToManyApplicationClaimsExcelDataFilter + + """Some related `applicationClaimsExcelDataByUpdatedBy` exist.""" + applicationClaimsExcelDataByUpdatedByExist: Boolean """ - No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationClaimsExcelDataByArchivedBy` relation. """ - none: ApplicationClaimsExcelDataFilter -} + applicationClaimsExcelDataByArchivedBy: CcbcUserToManyApplicationClaimsExcelDataFilter -""" -A filter to be used against `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationClaimsExcelDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Some related `applicationClaimsExcelDataByArchivedBy` exist.""" + applicationClaimsExcelDataByArchivedByExist: Boolean - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + Filter by the object’s `applicationCommunityProgressReportDataByCreatedBy` relation. + """ + applicationCommunityProgressReportDataByCreatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + Some related `applicationCommunityProgressReportDataByCreatedBy` exist. + """ + applicationCommunityProgressReportDataByCreatedByExist: Boolean - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """ + Filter by the object’s `applicationCommunityProgressReportDataByUpdatedBy` relation. + """ + applicationCommunityProgressReportDataByUpdatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + Some related `applicationCommunityProgressReportDataByUpdatedBy` exist. + """ + applicationCommunityProgressReportDataByUpdatedByExist: Boolean - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + Filter by the object’s `applicationCommunityProgressReportDataByArchivedBy` relation. + """ + applicationCommunityProgressReportDataByArchivedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """ + Some related `applicationCommunityProgressReportDataByArchivedBy` exist. + """ + applicationCommunityProgressReportDataByArchivedByExist: Boolean - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """ + Filter by the object’s `applicationCommunityReportExcelDataByCreatedBy` relation. + """ + applicationCommunityReportExcelDataByCreatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Some related `applicationCommunityReportExcelDataByCreatedBy` exist.""" + applicationCommunityReportExcelDataByCreatedByExist: Boolean - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """ + Filter by the object’s `applicationCommunityReportExcelDataByUpdatedBy` relation. + """ + applicationCommunityReportExcelDataByUpdatedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Some related `applicationCommunityReportExcelDataByUpdatedBy` exist.""" + applicationCommunityReportExcelDataByUpdatedByExist: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """ + Filter by the object’s `applicationCommunityReportExcelDataByArchivedBy` relation. + """ + applicationCommunityReportExcelDataByArchivedBy: CcbcUserToManyApplicationCommunityReportExcelDataFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Some related `applicationCommunityReportExcelDataByArchivedBy` exist.""" + applicationCommunityReportExcelDataByArchivedByExist: Boolean - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """ + Filter by the object’s `applicationInternalDescriptionsByCreatedBy` relation. + """ + applicationInternalDescriptionsByCreatedBy: CcbcUserToManyApplicationInternalDescriptionFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Some related `applicationInternalDescriptionsByCreatedBy` exist.""" + applicationInternalDescriptionsByCreatedByExist: Boolean - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """ + Filter by the object’s `applicationInternalDescriptionsByUpdatedBy` relation. + """ + applicationInternalDescriptionsByUpdatedBy: CcbcUserToManyApplicationInternalDescriptionFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Some related `applicationInternalDescriptionsByUpdatedBy` exist.""" + applicationInternalDescriptionsByUpdatedByExist: Boolean - """Checks for all expressions in this list.""" - and: [ApplicationClaimsExcelDataFilter!] + """ + Filter by the object’s `applicationInternalDescriptionsByArchivedBy` relation. + """ + applicationInternalDescriptionsByArchivedBy: CcbcUserToManyApplicationInternalDescriptionFilter - """Checks for any expressions in this list.""" - or: [ApplicationClaimsExcelDataFilter!] + """Some related `applicationInternalDescriptionsByArchivedBy` exist.""" + applicationInternalDescriptionsByArchivedByExist: Boolean - """Negates the expression.""" - not: ApplicationClaimsExcelDataFilter -} + """Filter by the object’s `applicationMilestoneDataByCreatedBy` relation.""" + applicationMilestoneDataByCreatedBy: CcbcUserToManyApplicationMilestoneDataFilter + + """Some related `applicationMilestoneDataByCreatedBy` exist.""" + applicationMilestoneDataByCreatedByExist: Boolean + + """Filter by the object’s `applicationMilestoneDataByUpdatedBy` relation.""" + applicationMilestoneDataByUpdatedBy: CcbcUserToManyApplicationMilestoneDataFilter + + """Some related `applicationMilestoneDataByUpdatedBy` exist.""" + applicationMilestoneDataByUpdatedByExist: Boolean -""" -A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationMilestoneDataFilter { """ - Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationMilestoneDataByArchivedBy` relation. """ - every: ApplicationMilestoneDataFilter + applicationMilestoneDataByArchivedBy: CcbcUserToManyApplicationMilestoneDataFilter + + """Some related `applicationMilestoneDataByArchivedBy` exist.""" + applicationMilestoneDataByArchivedByExist: Boolean """ - Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationMilestoneExcelDataByCreatedBy` relation. """ - some: ApplicationMilestoneDataFilter + applicationMilestoneExcelDataByCreatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter + + """Some related `applicationMilestoneExcelDataByCreatedBy` exist.""" + applicationMilestoneExcelDataByCreatedByExist: Boolean """ - No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationMilestoneExcelDataByUpdatedBy` relation. """ - none: ApplicationMilestoneDataFilter -} + applicationMilestoneExcelDataByUpdatedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter -""" -A filter to be used against `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationMilestoneDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Some related `applicationMilestoneExcelDataByUpdatedBy` exist.""" + applicationMilestoneExcelDataByUpdatedByExist: Boolean - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """ + Filter by the object’s `applicationMilestoneExcelDataByArchivedBy` relation. + """ + applicationMilestoneExcelDataByArchivedBy: CcbcUserToManyApplicationMilestoneExcelDataFilter - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Some related `applicationMilestoneExcelDataByArchivedBy` exist.""" + applicationMilestoneExcelDataByArchivedByExist: Boolean - """Filter by the object’s `excelDataId` field.""" - excelDataId: IntFilter + """Filter by the object’s `applicationSowDataByCreatedBy` relation.""" + applicationSowDataByCreatedBy: CcbcUserToManyApplicationSowDataFilter - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Some related `applicationSowDataByCreatedBy` exist.""" + applicationSowDataByCreatedByExist: Boolean - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Filter by the object’s `applicationSowDataByUpdatedBy` relation.""" + applicationSowDataByUpdatedBy: CcbcUserToManyApplicationSowDataFilter - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Some related `applicationSowDataByUpdatedBy` exist.""" + applicationSowDataByUpdatedByExist: Boolean - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Filter by the object’s `applicationSowDataByArchivedBy` relation.""" + applicationSowDataByArchivedBy: CcbcUserToManyApplicationSowDataFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Some related `applicationSowDataByArchivedBy` exist.""" + applicationSowDataByArchivedByExist: Boolean - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Filter by the object’s `cbcProjectsByCreatedBy` relation.""" + cbcProjectsByCreatedBy: CcbcUserToManyCbcProjectFilter - """Filter by the object’s `historyOperation` field.""" - historyOperation: StringFilter + """Some related `cbcProjectsByCreatedBy` exist.""" + cbcProjectsByCreatedByExist: Boolean - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `cbcProjectsByUpdatedBy` relation.""" + cbcProjectsByUpdatedBy: CcbcUserToManyCbcProjectFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Some related `cbcProjectsByUpdatedBy` exist.""" + cbcProjectsByUpdatedByExist: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Filter by the object’s `cbcProjectsByArchivedBy` relation.""" + cbcProjectsByArchivedBy: CcbcUserToManyCbcProjectFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Some related `cbcProjectsByArchivedBy` exist.""" + cbcProjectsByArchivedByExist: Boolean - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Filter by the object’s `changeRequestDataByCreatedBy` relation.""" + changeRequestDataByCreatedBy: CcbcUserToManyChangeRequestDataFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Some related `changeRequestDataByCreatedBy` exist.""" + changeRequestDataByCreatedByExist: Boolean - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Filter by the object’s `changeRequestDataByUpdatedBy` relation.""" + changeRequestDataByUpdatedBy: CcbcUserToManyChangeRequestDataFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Some related `changeRequestDataByUpdatedBy` exist.""" + changeRequestDataByUpdatedByExist: Boolean - """Checks for all expressions in this list.""" - and: [ApplicationMilestoneDataFilter!] + """Filter by the object’s `changeRequestDataByArchivedBy` relation.""" + changeRequestDataByArchivedBy: CcbcUserToManyChangeRequestDataFilter - """Checks for any expressions in this list.""" - or: [ApplicationMilestoneDataFilter!] + """Some related `changeRequestDataByArchivedBy` exist.""" + changeRequestDataByArchivedByExist: Boolean - """Negates the expression.""" - not: ApplicationMilestoneDataFilter -} + """Filter by the object’s `notificationsByCreatedBy` relation.""" + notificationsByCreatedBy: CcbcUserToManyNotificationFilter -""" -A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationMilestoneExcelDataFilter { - """ - Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationMilestoneExcelDataFilter + """Some related `notificationsByCreatedBy` exist.""" + notificationsByCreatedByExist: Boolean - """ - Some related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationMilestoneExcelDataFilter + """Filter by the object’s `notificationsByUpdatedBy` relation.""" + notificationsByUpdatedBy: CcbcUserToManyNotificationFilter - """ - No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationMilestoneExcelDataFilter -} + """Some related `notificationsByUpdatedBy` exist.""" + notificationsByUpdatedByExist: Boolean -""" -A filter to be used against `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationMilestoneExcelDataFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Filter by the object’s `notificationsByArchivedBy` relation.""" + notificationsByArchivedBy: CcbcUserToManyNotificationFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Some related `notificationsByArchivedBy` exist.""" + notificationsByArchivedByExist: Boolean - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """Filter by the object’s `applicationPackagesByCreatedBy` relation.""" + applicationPackagesByCreatedBy: CcbcUserToManyApplicationPackageFilter - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Some related `applicationPackagesByCreatedBy` exist.""" + applicationPackagesByCreatedByExist: Boolean - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Filter by the object’s `applicationPackagesByUpdatedBy` relation.""" + applicationPackagesByUpdatedBy: CcbcUserToManyApplicationPackageFilter - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Some related `applicationPackagesByUpdatedBy` exist.""" + applicationPackagesByUpdatedByExist: Boolean - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Filter by the object’s `applicationPackagesByArchivedBy` relation.""" + applicationPackagesByArchivedBy: CcbcUserToManyApplicationPackageFilter - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Some related `applicationPackagesByArchivedBy` exist.""" + applicationPackagesByArchivedByExist: Boolean - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Filter by the object’s `applicationProjectTypesByCreatedBy` relation.""" + applicationProjectTypesByCreatedBy: CcbcUserToManyApplicationProjectTypeFilter - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Some related `applicationProjectTypesByCreatedBy` exist.""" + applicationProjectTypesByCreatedByExist: Boolean - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Filter by the object’s `applicationProjectTypesByUpdatedBy` relation.""" + applicationProjectTypesByUpdatedBy: CcbcUserToManyApplicationProjectTypeFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Some related `applicationProjectTypesByUpdatedBy` exist.""" + applicationProjectTypesByUpdatedByExist: Boolean - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Filter by the object’s `applicationProjectTypesByArchivedBy` relation.""" + applicationProjectTypesByArchivedBy: CcbcUserToManyApplicationProjectTypeFilter - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Some related `applicationProjectTypesByArchivedBy` exist.""" + applicationProjectTypesByArchivedByExist: Boolean - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Filter by the object’s `ccbcUsersByCreatedBy` relation.""" + ccbcUsersByCreatedBy: CcbcUserToManyCcbcUserFilter - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Some related `ccbcUsersByCreatedBy` exist.""" + ccbcUsersByCreatedByExist: Boolean - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Filter by the object’s `ccbcUsersByUpdatedBy` relation.""" + ccbcUsersByUpdatedBy: CcbcUserToManyCcbcUserFilter - """Checks for all expressions in this list.""" - and: [ApplicationMilestoneExcelDataFilter!] + """Some related `ccbcUsersByUpdatedBy` exist.""" + ccbcUsersByUpdatedByExist: Boolean - """Checks for any expressions in this list.""" - or: [ApplicationMilestoneExcelDataFilter!] + """Filter by the object’s `ccbcUsersByArchivedBy` relation.""" + ccbcUsersByArchivedBy: CcbcUserToManyCcbcUserFilter - """Negates the expression.""" - not: ApplicationMilestoneExcelDataFilter -} + """Some related `ccbcUsersByArchivedBy` exist.""" + ccbcUsersByArchivedByExist: Boolean -""" -A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationInternalDescriptionFilter { - """ - Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationInternalDescriptionFilter + """Filter by the object’s `attachmentsByCreatedBy` relation.""" + attachmentsByCreatedBy: CcbcUserToManyAttachmentFilter - """ - Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationInternalDescriptionFilter + """Some related `attachmentsByCreatedBy` exist.""" + attachmentsByCreatedByExist: Boolean - """ - No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationInternalDescriptionFilter -} + """Filter by the object’s `attachmentsByUpdatedBy` relation.""" + attachmentsByUpdatedBy: CcbcUserToManyAttachmentFilter -""" -A filter to be used against `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationInternalDescriptionFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Some related `attachmentsByUpdatedBy` exist.""" + attachmentsByUpdatedByExist: Boolean - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `attachmentsByArchivedBy` relation.""" + attachmentsByArchivedBy: CcbcUserToManyAttachmentFilter - """Filter by the object’s `description` field.""" - description: StringFilter + """Some related `attachmentsByArchivedBy` exist.""" + attachmentsByArchivedByExist: Boolean - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Filter by the object’s `gisDataByCreatedBy` relation.""" + gisDataByCreatedBy: CcbcUserToManyGisDataFilter - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Some related `gisDataByCreatedBy` exist.""" + gisDataByCreatedByExist: Boolean - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Filter by the object’s `gisDataByUpdatedBy` relation.""" + gisDataByUpdatedBy: CcbcUserToManyGisDataFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Some related `gisDataByUpdatedBy` exist.""" + gisDataByUpdatedByExist: Boolean - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Filter by the object’s `gisDataByArchivedBy` relation.""" + gisDataByArchivedBy: CcbcUserToManyGisDataFilter - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Some related `gisDataByArchivedBy` exist.""" + gisDataByArchivedByExist: Boolean - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `analystsByCreatedBy` relation.""" + analystsByCreatedBy: CcbcUserToManyAnalystFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Some related `analystsByCreatedBy` exist.""" + analystsByCreatedByExist: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Filter by the object’s `analystsByUpdatedBy` relation.""" + analystsByUpdatedBy: CcbcUserToManyAnalystFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Some related `analystsByUpdatedBy` exist.""" + analystsByUpdatedByExist: Boolean - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Filter by the object’s `analystsByArchivedBy` relation.""" + analystsByArchivedBy: CcbcUserToManyAnalystFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Some related `analystsByArchivedBy` exist.""" + analystsByArchivedByExist: Boolean - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Filter by the object’s `applicationAnalystLeadsByCreatedBy` relation.""" + applicationAnalystLeadsByCreatedBy: CcbcUserToManyApplicationAnalystLeadFilter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Some related `applicationAnalystLeadsByCreatedBy` exist.""" + applicationAnalystLeadsByCreatedByExist: Boolean - """Checks for all expressions in this list.""" - and: [ApplicationInternalDescriptionFilter!] + """Filter by the object’s `applicationAnalystLeadsByUpdatedBy` relation.""" + applicationAnalystLeadsByUpdatedBy: CcbcUserToManyApplicationAnalystLeadFilter - """Checks for any expressions in this list.""" - or: [ApplicationInternalDescriptionFilter!] + """Some related `applicationAnalystLeadsByUpdatedBy` exist.""" + applicationAnalystLeadsByUpdatedByExist: Boolean - """Negates the expression.""" - not: ApplicationInternalDescriptionFilter -} + """Filter by the object’s `applicationAnalystLeadsByArchivedBy` relation.""" + applicationAnalystLeadsByArchivedBy: CcbcUserToManyApplicationAnalystLeadFilter -""" -A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyApplicationProjectTypeFilter { - """ - Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationProjectTypeFilter + """Some related `applicationAnalystLeadsByArchivedBy` exist.""" + applicationAnalystLeadsByArchivedByExist: Boolean - """ - Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationProjectTypeFilter + """Filter by the object’s `applicationAnnouncementsByCreatedBy` relation.""" + applicationAnnouncementsByCreatedBy: CcbcUserToManyApplicationAnnouncementFilter + + """Some related `applicationAnnouncementsByCreatedBy` exist.""" + applicationAnnouncementsByCreatedByExist: Boolean + + """Filter by the object’s `applicationAnnouncementsByUpdatedBy` relation.""" + applicationAnnouncementsByUpdatedBy: CcbcUserToManyApplicationAnnouncementFilter + + """Some related `applicationAnnouncementsByUpdatedBy` exist.""" + applicationAnnouncementsByUpdatedByExist: Boolean """ - No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `applicationAnnouncementsByArchivedBy` relation. """ - none: ApplicationProjectTypeFilter -} + applicationAnnouncementsByArchivedBy: CcbcUserToManyApplicationAnnouncementFilter -""" -A filter to be used against `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationProjectTypeFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Some related `applicationAnnouncementsByArchivedBy` exist.""" + applicationAnnouncementsByArchivedByExist: Boolean - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Filter by the object’s `applicationStatusesByCreatedBy` relation.""" + applicationStatusesByCreatedBy: CcbcUserToManyApplicationStatusFilter - """Filter by the object’s `projectType` field.""" - projectType: StringFilter + """Some related `applicationStatusesByCreatedBy` exist.""" + applicationStatusesByCreatedByExist: Boolean - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Filter by the object’s `applicationStatusesByArchivedBy` relation.""" + applicationStatusesByArchivedBy: CcbcUserToManyApplicationStatusFilter - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Some related `applicationStatusesByArchivedBy` exist.""" + applicationStatusesByArchivedByExist: Boolean - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Filter by the object’s `applicationStatusesByUpdatedBy` relation.""" + applicationStatusesByUpdatedBy: CcbcUserToManyApplicationStatusFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Some related `applicationStatusesByUpdatedBy` exist.""" + applicationStatusesByUpdatedByExist: Boolean - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Filter by the object’s `emailRecordsByCreatedBy` relation.""" + emailRecordsByCreatedBy: CcbcUserToManyEmailRecordFilter - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Some related `emailRecordsByCreatedBy` exist.""" + emailRecordsByCreatedByExist: Boolean - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `emailRecordsByUpdatedBy` relation.""" + emailRecordsByUpdatedBy: CcbcUserToManyEmailRecordFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Some related `emailRecordsByUpdatedBy` exist.""" + emailRecordsByUpdatedByExist: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Filter by the object’s `emailRecordsByArchivedBy` relation.""" + emailRecordsByArchivedBy: CcbcUserToManyEmailRecordFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Some related `emailRecordsByArchivedBy` exist.""" + emailRecordsByArchivedByExist: Boolean - """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" - ccbcUserByUpdatedBy: CcbcUserFilter + """Filter by the object’s `recordVersionsByCreatedBy` relation.""" + recordVersionsByCreatedBy: CcbcUserToManyRecordVersionFilter - """A related `ccbcUserByUpdatedBy` exists.""" - ccbcUserByUpdatedByExists: Boolean + """Some related `recordVersionsByCreatedBy` exist.""" + recordVersionsByCreatedByExist: Boolean - """Filter by the object’s `ccbcUserByArchivedBy` relation.""" - ccbcUserByArchivedBy: CcbcUserFilter + """Filter by the object’s `sowTab1SByCreatedBy` relation.""" + sowTab1SByCreatedBy: CcbcUserToManySowTab1Filter - """A related `ccbcUserByArchivedBy` exists.""" - ccbcUserByArchivedByExists: Boolean + """Some related `sowTab1SByCreatedBy` exist.""" + sowTab1SByCreatedByExist: Boolean - """Checks for all expressions in this list.""" - and: [ApplicationProjectTypeFilter!] + """Filter by the object’s `sowTab1SByUpdatedBy` relation.""" + sowTab1SByUpdatedBy: CcbcUserToManySowTab1Filter - """Checks for any expressions in this list.""" - or: [ApplicationProjectTypeFilter!] + """Some related `sowTab1SByUpdatedBy` exist.""" + sowTab1SByUpdatedByExist: Boolean - """Negates the expression.""" - not: ApplicationProjectTypeFilter -} + """Filter by the object’s `sowTab1SByArchivedBy` relation.""" + sowTab1SByArchivedBy: CcbcUserToManySowTab1Filter -""" -A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ -""" -input ApplicationToManyNotificationFilter { - """ - Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: NotificationFilter + """Some related `sowTab1SByArchivedBy` exist.""" + sowTab1SByArchivedByExist: Boolean - """ - Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: NotificationFilter + """Filter by the object’s `sowTab2SByCreatedBy` relation.""" + sowTab2SByCreatedBy: CcbcUserToManySowTab2Filter + + """Some related `sowTab2SByCreatedBy` exist.""" + sowTab2SByCreatedByExist: Boolean + + """Filter by the object’s `sowTab2SByUpdatedBy` relation.""" + sowTab2SByUpdatedBy: CcbcUserToManySowTab2Filter + + """Some related `sowTab2SByUpdatedBy` exist.""" + sowTab2SByUpdatedByExist: Boolean + + """Filter by the object’s `sowTab2SByArchivedBy` relation.""" + sowTab2SByArchivedBy: CcbcUserToManySowTab2Filter + + """Some related `sowTab2SByArchivedBy` exist.""" + sowTab2SByArchivedByExist: Boolean + + """Filter by the object’s `sowTab7SByCreatedBy` relation.""" + sowTab7SByCreatedBy: CcbcUserToManySowTab7Filter + + """Some related `sowTab7SByCreatedBy` exist.""" + sowTab7SByCreatedByExist: Boolean + + """Filter by the object’s `sowTab7SByUpdatedBy` relation.""" + sowTab7SByUpdatedBy: CcbcUserToManySowTab7Filter + + """Some related `sowTab7SByUpdatedBy` exist.""" + sowTab7SByUpdatedByExist: Boolean + + """Filter by the object’s `sowTab7SByArchivedBy` relation.""" + sowTab7SByArchivedBy: CcbcUserToManySowTab7Filter + + """Some related `sowTab7SByArchivedBy` exist.""" + sowTab7SByArchivedByExist: Boolean + + """Filter by the object’s `sowTab8SByCreatedBy` relation.""" + sowTab8SByCreatedBy: CcbcUserToManySowTab8Filter + + """Some related `sowTab8SByCreatedBy` exist.""" + sowTab8SByCreatedByExist: Boolean + + """Filter by the object’s `sowTab8SByUpdatedBy` relation.""" + sowTab8SByUpdatedBy: CcbcUserToManySowTab8Filter + + """Some related `sowTab8SByUpdatedBy` exist.""" + sowTab8SByUpdatedByExist: Boolean + + """Filter by the object’s `sowTab8SByArchivedBy` relation.""" + sowTab8SByArchivedBy: CcbcUserToManySowTab8Filter + + """Some related `sowTab8SByArchivedBy` exist.""" + sowTab8SByArchivedByExist: Boolean """ - No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: NotificationFilter -} + Filter by the object’s `applicationPendingChangeRequestsByCreatedBy` relation. + """ + applicationPendingChangeRequestsByCreatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter -""" -A filter to be used against `Notification` object types. All fields are combined with a logical ‘and.’ -""" -input NotificationFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Some related `applicationPendingChangeRequestsByCreatedBy` exist.""" + applicationPendingChangeRequestsByCreatedByExist: Boolean - """Filter by the object’s `notificationType` field.""" - notificationType: StringFilter + """ + Filter by the object’s `applicationPendingChangeRequestsByUpdatedBy` relation. + """ + applicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter + """Some related `applicationPendingChangeRequestsByUpdatedBy` exist.""" + applicationPendingChangeRequestsByUpdatedByExist: Boolean - """Filter by the object’s `jsonData` field.""" - jsonData: JSONFilter + """ + Filter by the object’s `applicationPendingChangeRequestsByArchivedBy` relation. + """ + applicationPendingChangeRequestsByArchivedBy: CcbcUserToManyApplicationPendingChangeRequestFilter - """Filter by the object’s `emailRecordId` field.""" - emailRecordId: IntFilter + """Some related `applicationPendingChangeRequestsByArchivedBy` exist.""" + applicationPendingChangeRequestsByArchivedByExist: Boolean - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Filter by the object’s `cbcsByCreatedBy` relation.""" + cbcsByCreatedBy: CcbcUserToManyCbcFilter - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Some related `cbcsByCreatedBy` exist.""" + cbcsByCreatedByExist: Boolean - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """Filter by the object’s `cbcsByUpdatedBy` relation.""" + cbcsByUpdatedBy: CcbcUserToManyCbcFilter - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Some related `cbcsByUpdatedBy` exist.""" + cbcsByUpdatedByExist: Boolean - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Filter by the object’s `cbcsByArchivedBy` relation.""" + cbcsByArchivedBy: CcbcUserToManyCbcFilter - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """Some related `cbcsByArchivedBy` exist.""" + cbcsByArchivedByExist: Boolean - """Filter by the object’s `applicationByApplicationId` relation.""" - applicationByApplicationId: ApplicationFilter + """Filter by the object’s `cbcDataByCreatedBy` relation.""" + cbcDataByCreatedBy: CcbcUserToManyCbcDataFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean + """Some related `cbcDataByCreatedBy` exist.""" + cbcDataByCreatedByExist: Boolean - """Filter by the object’s `emailRecordByEmailRecordId` relation.""" - emailRecordByEmailRecordId: EmailRecordFilter + """Filter by the object’s `cbcDataByUpdatedBy` relation.""" + cbcDataByUpdatedBy: CcbcUserToManyCbcDataFilter - """A related `emailRecordByEmailRecordId` exists.""" - emailRecordByEmailRecordIdExists: Boolean + """Some related `cbcDataByUpdatedBy` exist.""" + cbcDataByUpdatedByExist: Boolean + + """Filter by the object’s `cbcDataByArchivedBy` relation.""" + cbcDataByArchivedBy: CcbcUserToManyCbcDataFilter + + """Some related `cbcDataByArchivedBy` exist.""" + cbcDataByArchivedByExist: Boolean + + """Filter by the object’s `keycloakJwtsBySub` relation.""" + keycloakJwtsBySub: CcbcUserToManyKeycloakJwtFilter + + """Some related `keycloakJwtsBySub` exist.""" + keycloakJwtsBySubExist: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -22806,36 +23809,84 @@ input NotificationFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [NotificationFilter!] + and: [CcbcUserFilter!] """Checks for any expressions in this list.""" - or: [NotificationFilter!] + or: [CcbcUserFilter!] """Negates the expression.""" - not: NotificationFilter + not: CcbcUserFilter } """ -A filter to be used against `EmailRecord` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Application` object types. All fields are combined with a logical ‘and.’ """ -input EmailRecordFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter +input CcbcUserToManyApplicationFilter { + """ + Every related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationFilter - """Filter by the object’s `toEmail` field.""" - toEmail: StringFilter + """ + Some related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationFilter - """Filter by the object’s `ccEmail` field.""" - ccEmail: StringFilter + """ + No related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationFilter +} - """Filter by the object’s `subject` field.""" - subject: StringFilter +""" +A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyAssessmentDataFilter { + """ + Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AssessmentDataFilter - """Filter by the object’s `body` field.""" - body: StringFilter + """ + Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AssessmentDataFilter - """Filter by the object’s `messageId` field.""" - messageId: StringFilter + """ + No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AssessmentDataFilter +} + +""" +A filter to be used against many `Announcement` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyAnnouncementFilter { + """ + Every related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AnnouncementFilter + + """ + Some related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AnnouncementFilter + + """ + No related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AnnouncementFilter +} + +""" +A filter to be used against `Announcement` object types. All fields are combined with a logical ‘and.’ +""" +input AnnouncementFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter + + """Filter by the object’s `ccbcNumbers` field.""" + ccbcNumbers: StringFilter """Filter by the object’s `jsonData` field.""" jsonData: JSONFilter @@ -22858,11 +23909,13 @@ input EmailRecordFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `notificationsByEmailRecordId` relation.""" - notificationsByEmailRecordId: EmailRecordToManyNotificationFilter + """ + Filter by the object’s `applicationAnnouncementsByAnnouncementId` relation. + """ + applicationAnnouncementsByAnnouncementId: AnnouncementToManyApplicationAnnouncementFilter - """Some related `notificationsByEmailRecordId` exist.""" - notificationsByEmailRecordIdExist: Boolean + """Some related `applicationAnnouncementsByAnnouncementId` exist.""" + applicationAnnouncementsByAnnouncementIdExist: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -22883,71 +23936,45 @@ input EmailRecordFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [EmailRecordFilter!] + and: [AnnouncementFilter!] """Checks for any expressions in this list.""" - or: [EmailRecordFilter!] + or: [AnnouncementFilter!] """Negates the expression.""" - not: EmailRecordFilter -} - -""" -A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ -""" -input EmailRecordToManyNotificationFilter { - """ - Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: NotificationFilter - - """ - Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: NotificationFilter - - """ - No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: NotificationFilter + not: AnnouncementFilter } """ -A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationToManyApplicationPendingChangeRequestFilter { +input AnnouncementToManyApplicationAnnouncementFilter { """ - Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationPendingChangeRequestFilter + every: ApplicationAnnouncementFilter """ - Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationPendingChangeRequestFilter + some: ApplicationAnnouncementFilter """ - No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationPendingChangeRequestFilter + none: ApplicationAnnouncementFilter } """ -A filter to be used against `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ """ -input ApplicationPendingChangeRequestFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter +input ApplicationAnnouncementFilter { + """Filter by the object’s `announcementId` field.""" + announcementId: IntFilter """Filter by the object’s `applicationId` field.""" applicationId: IntFilter - """Filter by the object’s `isPending` field.""" - isPending: BooleanFilter - - """Filter by the object’s `comment` field.""" - comment: StringFilter - """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -22966,12 +23993,18 @@ input ApplicationPendingChangeRequestFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter + """Filter by the object’s `isPrimary` field.""" + isPrimary: BooleanFilter + + """Filter by the object’s `historyOperation` field.""" + historyOperation: StringFilter + + """Filter by the object’s `announcementByAnnouncementId` relation.""" + announcementByAnnouncementId: AnnouncementFilter + """Filter by the object’s `applicationByApplicationId` relation.""" applicationByApplicationId: ApplicationFilter - """A related `applicationByApplicationId` exists.""" - applicationByApplicationIdExists: Boolean - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -22991,119 +24024,98 @@ input ApplicationPendingChangeRequestFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [ApplicationPendingChangeRequestFilter!] - - """Checks for any expressions in this list.""" - or: [ApplicationPendingChangeRequestFilter!] - - """Negates the expression.""" - not: ApplicationPendingChangeRequestFilter -} - -""" -A filter to be used against `GaplessCounter` object types. All fields are combined with a logical ‘and.’ -""" -input GaplessCounterFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter - - """Filter by the object’s `counter` field.""" - counter: IntFilter - - """Filter by the object’s `intakesByCounterId` relation.""" - intakesByCounterId: GaplessCounterToManyIntakeFilter - - """Some related `intakesByCounterId` exist.""" - intakesByCounterIdExist: Boolean - - """Checks for all expressions in this list.""" - and: [GaplessCounterFilter!] + and: [ApplicationAnnouncementFilter!] """Checks for any expressions in this list.""" - or: [GaplessCounterFilter!] + or: [ApplicationAnnouncementFilter!] """Negates the expression.""" - not: GaplessCounterFilter + not: ApplicationAnnouncementFilter } """ -A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ """ -input GaplessCounterToManyIntakeFilter { +input CcbcUserToManyConditionalApprovalDataFilter { """ - Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: IntakeFilter + every: ConditionalApprovalDataFilter """ - Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: IntakeFilter + some: ConditionalApprovalDataFilter """ - No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: IntakeFilter + none: ConditionalApprovalDataFilter } """ -A filter to be used against many `Application` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationFilter { - """ - Every related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationFilter +input ConditionalApprovalDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Some related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - No related `Application` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationFilter -} + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter -""" -A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationStatusFilter { - """ - Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationStatusFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationStatusFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationStatusFilter -} + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter -""" -A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyAttachmentFilter { - """ - Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AttachmentFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AttachmentFilter + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AttachmentFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter + + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter + + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean + + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter + + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean + + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter + + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [ConditionalApprovalDataFilter!] + + """Checks for any expressions in this list.""" + or: [ConditionalApprovalDataFilter!] + + """Negates the expression.""" + not: ConditionalApprovalDataFilter } """ @@ -23127,364 +24139,293 @@ input CcbcUserToManyFormDataFilter { } """ -A filter to be used against many `Analyst` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `FormData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyAnalystFilter { - """ - Every related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AnalystFilter +input FormDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Some related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AnalystFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - No related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AnalystFilter -} + """Filter by the object’s `lastEditedPage` field.""" + lastEditedPage: StringFilter -""" -A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationAnalystLeadFilter { - """ - Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnalystLeadFilter + """Filter by the object’s `formDataStatusTypeId` field.""" + formDataStatusTypeId: StringFilter - """ - Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnalystLeadFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnalystLeadFilter -} + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter -""" -A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyRfiDataFilter { - """ - Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: RfiDataFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: RfiDataFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: RfiDataFilter -} + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter -""" -A filter to be used against many `AssessmentData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyAssessmentDataFilter { - """ - Every related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AssessmentDataFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - Some related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AssessmentDataFilter + """Filter by the object’s `formSchemaId` field.""" + formSchemaId: IntFilter - """ - No related `AssessmentData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AssessmentDataFilter -} + """Filter by the object’s `reasonForChange` field.""" + reasonForChange: StringFilter -""" -A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationPackageFilter { - """ - Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationPackageFilter + """Filter by the object’s `isEditable` field.""" + isEditable: BooleanFilter - """ - Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationPackageFilter + """Filter by the object’s `applicationFormDataByFormDataId` relation.""" + applicationFormDataByFormDataId: FormDataToManyApplicationFormDataFilter + + """Some related `applicationFormDataByFormDataId` exist.""" + applicationFormDataByFormDataIdExist: Boolean """ - No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + Filter by the object’s `formDataStatusTypeByFormDataStatusTypeId` relation. """ - none: ApplicationPackageFilter + formDataStatusTypeByFormDataStatusTypeId: FormDataStatusTypeFilter + + """A related `formDataStatusTypeByFormDataStatusTypeId` exists.""" + formDataStatusTypeByFormDataStatusTypeIdExists: Boolean + + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter + + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean + + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter + + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Filter by the object’s `formByFormSchemaId` relation.""" + formByFormSchemaId: FormFilter + + """A related `formByFormSchemaId` exists.""" + formByFormSchemaIdExists: Boolean + + """Checks for all expressions in this list.""" + and: [FormDataFilter!] + + """Checks for any expressions in this list.""" + or: [FormDataFilter!] + + """Negates the expression.""" + not: FormDataFilter } """ -A filter to be used against many `RecordVersion` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyRecordVersionFilter { +input FormDataToManyApplicationFormDataFilter { """ - Every related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: RecordVersionFilter + every: ApplicationFormDataFilter """ - Some related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: RecordVersionFilter + some: ApplicationFormDataFilter """ - No related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: RecordVersionFilter + none: ApplicationFormDataFilter } """ -A filter to be used against `RecordVersion` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ """ -input RecordVersionFilter { - """Filter by the object’s `rowId` field.""" - rowId: BigIntFilter - - """Filter by the object’s `recordId` field.""" - recordId: UUIDFilter - - """Filter by the object’s `oldRecordId` field.""" - oldRecordId: UUIDFilter - - """Filter by the object’s `op` field.""" - op: OperationFilter +input ApplicationFormDataFilter { + """Filter by the object’s `formDataId` field.""" + formDataId: IntFilter - """Filter by the object’s `ts` field.""" - ts: DatetimeFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `tableOid` field.""" - tableOid: BigFloatFilter + """Filter by the object’s `formDataByFormDataId` relation.""" + formDataByFormDataId: FormDataFilter - """Filter by the object’s `tableSchema` field.""" - tableSchema: StringFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Filter by the object’s `tableName` field.""" - tableName: StringFilter + """Checks for all expressions in this list.""" + and: [ApplicationFormDataFilter!] - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """Checks for any expressions in this list.""" + or: [ApplicationFormDataFilter!] - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """Negates the expression.""" + not: ApplicationFormDataFilter +} - """Filter by the object’s `record` field.""" - record: JSONFilter +""" +A filter to be used against `FormDataStatusType` object types. All fields are combined with a logical ‘and.’ +""" +input FormDataStatusTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """Filter by the object’s `oldRecord` field.""" - oldRecord: JSONFilter + """Filter by the object’s `description` field.""" + description: StringFilter - """Filter by the object’s `ccbcUserByCreatedBy` relation.""" - ccbcUserByCreatedBy: CcbcUserFilter + """Filter by the object’s `formDataByFormDataStatusTypeId` relation.""" + formDataByFormDataStatusTypeId: FormDataStatusTypeToManyFormDataFilter - """A related `ccbcUserByCreatedBy` exists.""" - ccbcUserByCreatedByExists: Boolean + """Some related `formDataByFormDataStatusTypeId` exist.""" + formDataByFormDataStatusTypeIdExist: Boolean """Checks for all expressions in this list.""" - and: [RecordVersionFilter!] + and: [FormDataStatusTypeFilter!] """Checks for any expressions in this list.""" - or: [RecordVersionFilter!] + or: [FormDataStatusTypeFilter!] """Negates the expression.""" - not: RecordVersionFilter + not: FormDataStatusTypeFilter } """ -A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’ +A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ """ -input BigIntFilter { +input FormDataStatusTypeToManyFormDataFilter { """ - Is null (if `true` is specified) or is not null (if `false` is specified). + Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - isNull: Boolean - - """Equal to the specified value.""" - equalTo: BigInt - - """Not equal to the specified value.""" - notEqualTo: BigInt + every: FormDataFilter """ - Not equal to the specified value, treating null like an ordinary value. + Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - distinctFrom: BigInt - - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: BigInt - - """Included in the specified list.""" - in: [BigInt!] - - """Not included in the specified list.""" - notIn: [BigInt!] - - """Less than the specified value.""" - lessThan: BigInt - - """Less than or equal to the specified value.""" - lessThanOrEqualTo: BigInt - - """Greater than the specified value.""" - greaterThan: BigInt + some: FormDataFilter - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: BigInt + """ + No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: FormDataFilter } """ -A signed eight-byte integer. The upper big integer values are greater than the -max value for a JavaScript number. Therefore all big integers will be output as -strings and not numbers. -""" -scalar BigInt - -""" -A filter to be used against Operation fields. All fields are combined with a logical ‘and.’ +A filter to be used against `Form` object types. All fields are combined with a logical ‘and.’ """ -input OperationFilter { - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean +input FormFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Equal to the specified value.""" - equalTo: Operation + """Filter by the object’s `slug` field.""" + slug: StringFilter - """Not equal to the specified value.""" - notEqualTo: Operation + """Filter by the object’s `jsonSchema` field.""" + jsonSchema: JSONFilter - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: Operation + """Filter by the object’s `description` field.""" + description: StringFilter - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: Operation + """Filter by the object’s `formType` field.""" + formType: StringFilter - """Included in the specified list.""" - in: [Operation!] + """Filter by the object’s `formDataByFormSchemaId` relation.""" + formDataByFormSchemaId: FormToManyFormDataFilter - """Not included in the specified list.""" - notIn: [Operation!] + """Some related `formDataByFormSchemaId` exist.""" + formDataByFormSchemaIdExist: Boolean - """Less than the specified value.""" - lessThan: Operation + """Filter by the object’s `formTypeByFormType` relation.""" + formTypeByFormType: FormTypeFilter - """Less than or equal to the specified value.""" - lessThanOrEqualTo: Operation + """A related `formTypeByFormType` exists.""" + formTypeByFormTypeExists: Boolean - """Greater than the specified value.""" - greaterThan: Operation + """Checks for all expressions in this list.""" + and: [FormFilter!] - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: Operation -} + """Checks for any expressions in this list.""" + or: [FormFilter!] -enum Operation { - INSERT - UPDATE - DELETE - TRUNCATE + """Negates the expression.""" + not: FormFilter } """ -A filter to be used against BigFloat fields. All fields are combined with a logical ‘and.’ +A filter to be used against many `FormData` object types. All fields are combined with a logical ‘and.’ """ -input BigFloatFilter { +input FormToManyFormDataFilter { """ - Is null (if `true` is specified) or is not null (if `false` is specified). + Every related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - isNull: Boolean - - """Equal to the specified value.""" - equalTo: BigFloat - - """Not equal to the specified value.""" - notEqualTo: BigFloat + every: FormDataFilter """ - Not equal to the specified value, treating null like an ordinary value. + Some related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - distinctFrom: BigFloat - - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: BigFloat - - """Included in the specified list.""" - in: [BigFloat!] - - """Not included in the specified list.""" - notIn: [BigFloat!] - - """Less than the specified value.""" - lessThan: BigFloat - - """Less than or equal to the specified value.""" - lessThanOrEqualTo: BigFloat - - """Greater than the specified value.""" - greaterThan: BigFloat + some: FormDataFilter - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: BigFloat + """ + No related `FormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: FormDataFilter } """ -A floating point number that requires more precision than IEEE 754 binary 64 +A filter to be used against `FormType` object types. All fields are combined with a logical ‘and.’ """ -scalar BigFloat +input FormTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter -""" -A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyConditionalApprovalDataFilter { - """ - Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ConditionalApprovalDataFilter + """Filter by the object’s `description` field.""" + description: StringFilter - """ - Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ConditionalApprovalDataFilter + """Filter by the object’s `formsByFormType` relation.""" + formsByFormType: FormTypeToManyFormFilter - """ - No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ConditionalApprovalDataFilter + """Some related `formsByFormType` exist.""" + formsByFormTypeExist: Boolean + + """Checks for all expressions in this list.""" + and: [FormTypeFilter!] + + """Checks for any expressions in this list.""" + or: [FormTypeFilter!] + + """Negates the expression.""" + not: FormTypeFilter } """ -A filter to be used against many `GisData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Form` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyGisDataFilter { +input FormTypeToManyFormFilter { """ - Every related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: GisDataFilter + every: FormFilter """ - Some related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: GisDataFilter + some: FormFilter """ - No related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `Form` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: GisDataFilter + none: FormFilter } """ @@ -23508,337 +24449,281 @@ input CcbcUserToManyApplicationGisDataFilter { } """ -A filter to be used against many `Announcement` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyAnnouncementFilter { - """ - Every related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: AnnouncementFilter +input ApplicationGisDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Some related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: AnnouncementFilter + """Filter by the object’s `batchId` field.""" + batchId: IntFilter - """ - No related `Announcement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: AnnouncementFilter -} + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter -""" -A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationAnnouncementFilter { - """ - Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationAnnouncementFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationAnnouncementFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationAnnouncementFilter -} + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter -""" -A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationSowDataFilter { - """ - Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationSowDataFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationSowDataFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationSowDataFilter -} + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter -""" -A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManySowTab2Filter { - """ - Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab2Filter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab2Filter + """Filter by the object’s `gisDataByBatchId` relation.""" + gisDataByBatchId: GisDataFilter - """ - No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab2Filter -} + """A related `gisDataByBatchId` exists.""" + gisDataByBatchIdExists: Boolean -""" -A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManySowTab1Filter { - """ - Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab1Filter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab1Filter + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """ - No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab1Filter -} + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter -""" -A filter to be used against many `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyProjectInformationDataFilter { - """ - Every related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ProjectInformationDataFilter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - Some related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ProjectInformationDataFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - No related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ProjectInformationDataFilter -} + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean -""" -A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManySowTab7Filter { - """ - Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab7Filter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab7Filter + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab7Filter + """Checks for all expressions in this list.""" + and: [ApplicationGisDataFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationGisDataFilter!] + + """Negates the expression.""" + not: ApplicationGisDataFilter } """ -A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `GisData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManySowTab8Filter { - """ - Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: SowTab8Filter +input GisDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: SowTab8Filter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: SowTab8Filter -} + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter -""" -A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyChangeRequestDataFilter { - """ - Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ChangeRequestDataFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ChangeRequestDataFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ChangeRequestDataFilter -} + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter -""" -A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationCommunityProgressReportDataFilter { - """ - Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationCommunityProgressReportDataFilter + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationCommunityProgressReportDataFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationCommunityProgressReportDataFilter -} + """Filter by the object’s `applicationGisDataByBatchId` relation.""" + applicationGisDataByBatchId: GisDataToManyApplicationGisDataFilter -""" -A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationCommunityReportExcelDataFilter { - """ - Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationCommunityReportExcelDataFilter + """Some related `applicationGisDataByBatchId` exist.""" + applicationGisDataByBatchIdExist: Boolean - """ - Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationCommunityReportExcelDataFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationCommunityReportExcelDataFilter -} + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean -""" -A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyApplicationClaimsDataFilter { - """ - Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationClaimsDataFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationClaimsDataFilter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationClaimsDataFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [GisDataFilter!] + + """Checks for any expressions in this list.""" + or: [GisDataFilter!] + + """Negates the expression.""" + not: GisDataFilter } """ -A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationClaimsExcelDataFilter { +input GisDataToManyApplicationGisDataFilter { """ - Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationClaimsExcelDataFilter + every: ApplicationGisDataFilter """ - Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationClaimsExcelDataFilter + some: ApplicationGisDataFilter """ - No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationClaimsExcelDataFilter + none: ApplicationGisDataFilter } """ -A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationMilestoneDataFilter { +input CcbcUserToManyProjectInformationDataFilter { """ - Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationMilestoneDataFilter + every: ProjectInformationDataFilter """ - Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationMilestoneDataFilter + some: ProjectInformationDataFilter """ - No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationMilestoneDataFilter + none: ProjectInformationDataFilter } """ -A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationMilestoneExcelDataFilter { - """ - Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationMilestoneExcelDataFilter +input ProjectInformationDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Some related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationMilestoneExcelDataFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationMilestoneExcelDataFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter + + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter + + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter + + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter + + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter + + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter + + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter + + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter + + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean + + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter + + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean + + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter + + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [ProjectInformationDataFilter!] + + """Checks for any expressions in this list.""" + or: [ProjectInformationDataFilter!] + + """Negates the expression.""" + not: ProjectInformationDataFilter } """ -A filter to be used against many `CbcProject` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyCbcProjectFilter { +input CcbcUserToManyRfiDataFilter { """ - Every related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcProjectFilter + every: RfiDataFilter """ - Some related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcProjectFilter + some: RfiDataFilter """ - No related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcProjectFilter + none: RfiDataFilter } """ -A filter to be used against `CbcProject` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `RfiData` object types. All fields are combined with a logical ‘and.’ """ -input CbcProjectFilter { +input RfiDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter + """Filter by the object’s `rfiNumber` field.""" + rfiNumber: StringFilter + """Filter by the object’s `jsonData` field.""" jsonData: JSONFilter - """Filter by the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: DatetimeFilter + """Filter by the object’s `rfiDataStatusTypeId` field.""" + rfiDataStatusTypeId: StringFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -23858,6 +24743,20 @@ input CbcProjectFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter + """Filter by the object’s `applicationRfiDataByRfiDataId` relation.""" + applicationRfiDataByRfiDataId: RfiDataToManyApplicationRfiDataFilter + + """Some related `applicationRfiDataByRfiDataId` exist.""" + applicationRfiDataByRfiDataIdExist: Boolean + + """ + Filter by the object’s `rfiDataStatusTypeByRfiDataStatusTypeId` relation. + """ + rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusTypeFilter + + """A related `rfiDataStatusTypeByRfiDataStatusTypeId` exists.""" + rfiDataStatusTypeByRfiDataStatusTypeIdExists: Boolean + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -23877,147 +24776,162 @@ input CbcProjectFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CbcProjectFilter!] + and: [RfiDataFilter!] """Checks for any expressions in this list.""" - or: [CbcProjectFilter!] + or: [RfiDataFilter!] """Negates the expression.""" - not: CbcProjectFilter + not: RfiDataFilter } """ -A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationInternalDescriptionFilter { +input RfiDataToManyApplicationRfiDataFilter { """ - Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationInternalDescriptionFilter + every: ApplicationRfiDataFilter """ - Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationInternalDescriptionFilter + some: ApplicationRfiDataFilter """ - No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationInternalDescriptionFilter + none: ApplicationRfiDataFilter } """ -A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationProjectTypeFilter { - """ - Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: ApplicationProjectTypeFilter +input ApplicationRfiDataFilter { + """Filter by the object’s `rfiDataId` field.""" + rfiDataId: IntFilter - """ - Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: ApplicationProjectTypeFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: ApplicationProjectTypeFilter + """Filter by the object’s `rfiDataByRfiDataId` relation.""" + rfiDataByRfiDataId: RfiDataFilter + + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter + + """Checks for all expressions in this list.""" + and: [ApplicationRfiDataFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationRfiDataFilter!] + + """Negates the expression.""" + not: ApplicationRfiDataFilter } """ -A filter to be used against many `EmailRecord` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `RfiDataStatusType` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyEmailRecordFilter { - """ - Every related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: EmailRecordFilter +input RfiDataStatusTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """ - Some related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: EmailRecordFilter + """Filter by the object’s `description` field.""" + description: StringFilter - """ - No related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: EmailRecordFilter + """Filter by the object’s `rfiDataByRfiDataStatusTypeId` relation.""" + rfiDataByRfiDataStatusTypeId: RfiDataStatusTypeToManyRfiDataFilter + + """Some related `rfiDataByRfiDataStatusTypeId` exist.""" + rfiDataByRfiDataStatusTypeIdExist: Boolean + + """Checks for all expressions in this list.""" + and: [RfiDataStatusTypeFilter!] + + """Checks for any expressions in this list.""" + or: [RfiDataStatusTypeFilter!] + + """Negates the expression.""" + not: RfiDataStatusTypeFilter } """ -A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `RfiData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyNotificationFilter { +input RfiDataStatusTypeToManyRfiDataFilter { """ - Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: NotificationFilter + every: RfiDataFilter """ - Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: NotificationFilter + some: RfiDataFilter """ - No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `RfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: NotificationFilter + none: RfiDataFilter } """ -A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyApplicationPendingChangeRequestFilter { +input CcbcUserToManyIntakeFilter { """ - Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: ApplicationPendingChangeRequestFilter + every: IntakeFilter """ - Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: ApplicationPendingChangeRequestFilter + some: IntakeFilter """ - No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: ApplicationPendingChangeRequestFilter + none: IntakeFilter } """ -A filter to be used against many `Cbc` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyCbcFilter { +input CcbcUserToManyApplicationClaimsDataFilter { """ - Every related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcFilter + every: ApplicationClaimsDataFilter """ - Some related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcFilter + some: ApplicationClaimsDataFilter """ - No related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcFilter + none: ApplicationClaimsDataFilter } """ -A filter to be used against `Cbc` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ """ -input CbcFilter { +input ApplicationClaimsDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `projectNumber` field.""" - projectNumber: IntFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: DatetimeFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter + + """Filter by the object’s `excelDataId` field.""" + excelDataId: IntFilter """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -24037,17 +24951,14 @@ input CbcFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `cbcDataByCbcId` relation.""" - cbcDataByCbcId: CbcToManyCbcDataFilter - - """Some related `cbcDataByCbcId` exist.""" - cbcDataByCbcIdExist: Boolean + """Filter by the object’s `historyOperation` field.""" + historyOperation: StringFilter - """Filter by the object’s `cbcDataByProjectNumber` relation.""" - cbcDataByProjectNumber: CbcToManyCbcDataFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Some related `cbcDataByProjectNumber` exist.""" - cbcDataByProjectNumberExist: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -24068,54 +24979,48 @@ input CbcFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CbcFilter!] + and: [ApplicationClaimsDataFilter!] """Checks for any expressions in this list.""" - or: [CbcFilter!] + or: [ApplicationClaimsDataFilter!] """Negates the expression.""" - not: CbcFilter + not: ApplicationClaimsDataFilter } """ -A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ """ -input CbcToManyCbcDataFilter { +input CcbcUserToManyApplicationClaimsExcelDataFilter { """ - Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: CbcDataFilter + every: ApplicationClaimsExcelDataFilter """ - Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: CbcDataFilter + some: ApplicationClaimsExcelDataFilter """ - No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: CbcDataFilter + none: ApplicationClaimsExcelDataFilter } """ -A filter to be used against `CbcData` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ """ -input CbcDataFilter { +input ApplicationClaimsExcelDataFilter { """Filter by the object’s `rowId` field.""" rowId: IntFilter - """Filter by the object’s `cbcId` field.""" - cbcId: IntFilter - - """Filter by the object’s `projectNumber` field.""" - projectNumber: IntFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter """Filter by the object’s `jsonData` field.""" jsonData: JSONFilter - """Filter by the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: DatetimeFilter - """Filter by the object’s `createdBy` field.""" createdBy: IntFilter @@ -24134,17 +25039,11 @@ input CbcDataFilter { """Filter by the object’s `archivedAt` field.""" archivedAt: DatetimeFilter - """Filter by the object’s `cbcByCbcId` relation.""" - cbcByCbcId: CbcFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """A related `cbcByCbcId` exists.""" - cbcByCbcIdExists: Boolean - - """Filter by the object’s `cbcByProjectNumber` relation.""" - cbcByProjectNumber: CbcFilter - - """A related `cbcByProjectNumber` exists.""" - cbcByProjectNumberExists: Boolean + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean """Filter by the object’s `ccbcUserByCreatedBy` relation.""" ccbcUserByCreatedBy: CcbcUserFilter @@ -24165,3576 +25064,3410 @@ input CbcDataFilter { ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [CbcDataFilter!] + and: [ApplicationClaimsExcelDataFilter!] """Checks for any expressions in this list.""" - or: [CbcDataFilter!] + or: [ApplicationClaimsExcelDataFilter!] """Negates the expression.""" - not: CbcDataFilter -} - -""" -A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserToManyCbcDataFilter { - """ - Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - every: CbcDataFilter - - """ - Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - some: CbcDataFilter - - """ - No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ - """ - none: CbcDataFilter + not: ApplicationClaimsExcelDataFilter } """ -A filter to be used against many `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ """ -input CcbcUserToManyKeycloakJwtFilter { +input CcbcUserToManyApplicationCommunityProgressReportDataFilter { """ - Every related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - every: KeycloakJwtFilter + every: ApplicationCommunityProgressReportDataFilter """ - Some related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - some: KeycloakJwtFilter + some: ApplicationCommunityProgressReportDataFilter """ - No related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - none: KeycloakJwtFilter + none: ApplicationCommunityProgressReportDataFilter } """ -A filter to be used against `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ +A filter to be used against `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ """ -input KeycloakJwtFilter { - """Filter by the object’s `jti` field.""" - jti: UUIDFilter - - """Filter by the object’s `exp` field.""" - exp: IntFilter - - """Filter by the object’s `nbf` field.""" - nbf: IntFilter - - """Filter by the object’s `iat` field.""" - iat: IntFilter - - """Filter by the object’s `iss` field.""" - iss: StringFilter - - """Filter by the object’s `aud` field.""" - aud: StringFilter - - """Filter by the object’s `sub` field.""" - sub: StringFilter +input ApplicationCommunityProgressReportDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Filter by the object’s `typ` field.""" - typ: StringFilter + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Filter by the object’s `azp` field.""" - azp: StringFilter + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Filter by the object’s `authTime` field.""" - authTime: IntFilter + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Filter by the object’s `sessionState` field.""" - sessionState: UUIDFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Filter by the object’s `acr` field.""" - acr: StringFilter + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Filter by the object’s `emailVerified` field.""" - emailVerified: BooleanFilter + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Filter by the object’s `name` field.""" - name: StringFilter + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Filter by the object’s `preferredUsername` field.""" - preferredUsername: StringFilter + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Filter by the object’s `givenName` field.""" - givenName: StringFilter + """Filter by the object’s `excelDataId` field.""" + excelDataId: IntFilter - """Filter by the object’s `familyName` field.""" - familyName: StringFilter + """Filter by the object’s `historyOperation` field.""" + historyOperation: StringFilter - """Filter by the object’s `email` field.""" - email: StringFilter + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Filter by the object’s `brokerSessionId` field.""" - brokerSessionId: StringFilter + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Filter by the object’s `priorityGroup` field.""" - priorityGroup: StringFilter + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Filter by the object’s `identityProvider` field.""" - identityProvider: StringFilter + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Filter by the object’s `userGroups` field.""" - userGroups: StringListFilter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Filter by the object’s `authRole` field.""" - authRole: StringFilter + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Filter by the object’s `ccbcUserBySub` relation.""" - ccbcUserBySub: CcbcUserFilter + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """A related `ccbcUserBySub` exists.""" - ccbcUserBySubExists: Boolean + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean """Checks for all expressions in this list.""" - and: [KeycloakJwtFilter!] + and: [ApplicationCommunityProgressReportDataFilter!] """Checks for any expressions in this list.""" - or: [KeycloakJwtFilter!] + or: [ApplicationCommunityProgressReportDataFilter!] """Negates the expression.""" - not: KeycloakJwtFilter + not: ApplicationCommunityProgressReportDataFilter } """ -A filter to be used against String List fields. All fields are combined with a logical ‘and.’ +A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ """ -input StringListFilter { +input CcbcUserToManyApplicationCommunityReportExcelDataFilter { """ - Is null (if `true` is specified) or is not null (if `false` is specified). + Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - isNull: Boolean - - """Equal to the specified value.""" - equalTo: [String] + every: ApplicationCommunityReportExcelDataFilter - """Not equal to the specified value.""" - notEqualTo: [String] + """ + Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationCommunityReportExcelDataFilter """ - Not equal to the specified value, treating null like an ordinary value. + No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - distinctFrom: [String] + none: ApplicationCommunityReportExcelDataFilter +} - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: [String] +""" +A filter to be used against `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationCommunityReportExcelDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Less than the specified value.""" - lessThan: [String] + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Less than or equal to the specified value.""" - lessThanOrEqualTo: [String] + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Greater than the specified value.""" - greaterThan: [String] + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: [String] + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Contains the specified list of values.""" - contains: [String] + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Contained by the specified list of values.""" - containedBy: [String] + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Overlaps the specified list of values.""" - overlaps: [String] + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Any array item is equal to the specified value.""" - anyEqualTo: String + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Any array item is not equal to the specified value.""" - anyNotEqualTo: String + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Any array item is less than the specified value.""" - anyLessThan: String + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Any array item is less than or equal to the specified value.""" - anyLessThanOrEqualTo: String + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Any array item is greater than the specified value.""" - anyGreaterThan: String + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Any array item is greater than or equal to the specified value.""" - anyGreaterThanOrEqualTo: String -} + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter -"""A connection to a list of `Intake` values.""" -type IntakesConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A list of edges which contains the `Intake` and cursor to aid in pagination. - """ - edges: [IntakesEdge!]! + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Information to aid in pagination.""" - pageInfo: PageInfo! + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """The count of *all* `Intake` you could get from the connection.""" - totalCount: Int! + """Checks for all expressions in this list.""" + and: [ApplicationCommunityReportExcelDataFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationCommunityReportExcelDataFilter!] + + """Negates the expression.""" + not: ApplicationCommunityReportExcelDataFilter } """ -Table containing intake numbers and their respective open and closing dates +A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ """ -type Intake implements Node { +input CcbcUserToManyApplicationInternalDescriptionFilter { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - id: ID! - - """Unique ID for each intake number""" - rowId: Int! - - """Open date and time for an intake number""" - openTimestamp: Datetime! - - """Close date and time for an intake number""" - closeTimestamp: Datetime! + every: ApplicationInternalDescriptionFilter - """Unique intake number for a set of CCBC IDs""" - ccbcIntakeNumber: Int! + """ + Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationInternalDescriptionFilter """ - The name of the sequence used to generate CCBC ids. It is added via a trigger + No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationNumberSeqName: String + none: ApplicationInternalDescriptionFilter +} - """created by user id""" - createdBy: Int +""" +A filter to be used against `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationInternalDescriptionFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """created at timestamp""" - createdAt: Datetime! + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """updated by user id""" - updatedBy: Int + """Filter by the object’s `description` field.""" + description: StringFilter - """updated at timestamp""" - updatedAt: Datetime! + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """archived by user id""" - archivedBy: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """archived at timestamp""" - archivedAt: Datetime + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - The counter_id used by the gapless_counter to generate a gapless intake id - """ - counterId: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """A description of the intake""" - description: String + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """A column to denote whether the intake is visible to the public""" - hidden: Boolean + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A column that stores the code used to access the hidden intake. Only used on intakes that are hidden - """ - hiddenCode: UUID + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByCreatedBy: CcbcUser + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByUpdatedBy: CcbcUser + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByArchivedBy: CcbcUser + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Reads a single `GaplessCounter` that is related to this `Intake`.""" - gaplessCounterByCounterId: GaplessCounter + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for all expressions in this list.""" + and: [ApplicationInternalDescriptionFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationInternalDescriptionFilter!] - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """Negates the expression.""" + not: ApplicationInternalDescriptionFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition +""" +A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationMilestoneDataFilter { + """ + Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationMilestoneDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): ApplicationsConnection! + """ + Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationMilestoneDataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationMilestoneDataFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationMilestoneDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `excelDataId` field.""" + excelDataId: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection! + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `historyOperation` field.""" + historyOperation: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection! + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [ApplicationMilestoneDataFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for any expressions in this list.""" + or: [ApplicationMilestoneDataFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection! + """Negates the expression.""" + not: ApplicationMilestoneDataFilter } -"""Table to hold counter for creating gapless sequences""" -type GaplessCounter implements Node { +""" +A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationMilestoneExcelDataFilter { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - id: ID! + every: ApplicationMilestoneExcelDataFilter - """Primary key for the gapless counter""" - rowId: Int! + """ + Some related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationMilestoneExcelDataFilter - """Primary key for the gapless counter""" - counter: Int! + """ + No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationMilestoneExcelDataFilter +} - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationMilestoneExcelDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: IntakeCondition + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: IntakeFilter - ): IntakesConnection! + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection! + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Checks for all expressions in this list.""" + and: [ApplicationMilestoneExcelDataFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for any expressions in this list.""" + or: [ApplicationMilestoneExcelDataFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Negates the expression.""" + not: ApplicationMilestoneExcelDataFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationSowDataFilter { + """ + Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationSowDataFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationSowDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationSowDataFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection! +""" +A filter to be used against `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationSowDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection! -} + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter -"""Methods to use when ordering `Intake`.""" -enum IntakesOrderBy { - NATURAL - ID_ASC - ID_DESC - OPEN_TIMESTAMP_ASC - OPEN_TIMESTAMP_DESC - CLOSE_TIMESTAMP_ASC - CLOSE_TIMESTAMP_DESC - CCBC_INTAKE_NUMBER_ASC - CCBC_INTAKE_NUMBER_DESC - APPLICATION_NUMBER_SEQ_NAME_ASC - APPLICATION_NUMBER_SEQ_NAME_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - COUNTER_ID_ASC - COUNTER_ID_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - HIDDEN_ASC - HIDDEN_DESC - HIDDEN_CODE_ASC - HIDDEN_CODE_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """Filter by the object’s `amendmentNumber` field.""" + amendmentNumber: IntFilter -""" -A condition to be used against `Intake` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input IntakeCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """Filter by the object’s `isAmendment` field.""" + isAmendment: BooleanFilter - """Checks for equality with the object’s `openTimestamp` field.""" - openTimestamp: Datetime + """Filter by the object’s `sowTab1SBySowId` relation.""" + sowTab1SBySowId: ApplicationSowDataToManySowTab1Filter - """Checks for equality with the object’s `closeTimestamp` field.""" - closeTimestamp: Datetime + """Some related `sowTab1SBySowId` exist.""" + sowTab1SBySowIdExist: Boolean - """Checks for equality with the object’s `ccbcIntakeNumber` field.""" - ccbcIntakeNumber: Int + """Filter by the object’s `sowTab2SBySowId` relation.""" + sowTab2SBySowId: ApplicationSowDataToManySowTab2Filter - """ - Checks for equality with the object’s `applicationNumberSeqName` field. - """ - applicationNumberSeqName: String + """Some related `sowTab2SBySowId` exist.""" + sowTab2SBySowIdExist: Boolean - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Filter by the object’s `sowTab7SBySowId` relation.""" + sowTab7SBySowId: ApplicationSowDataToManySowTab7Filter - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Some related `sowTab7SBySowId` exist.""" + sowTab7SBySowIdExist: Boolean - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Filter by the object’s `sowTab8SBySowId` relation.""" + sowTab8SBySowId: ApplicationSowDataToManySowTab8Filter - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Some related `sowTab8SBySowId` exist.""" + sowTab8SBySowIdExist: Boolean - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Checks for equality with the object’s `counterId` field.""" - counterId: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Checks for equality with the object’s `description` field.""" - description: String + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Checks for equality with the object’s `hidden` field.""" - hidden: Boolean + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Checks for equality with the object’s `hiddenCode` field.""" - hiddenCode: UUID -} + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. - """ - edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge!]! + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Checks for all expressions in this list.""" + and: [ApplicationSowDataFilter!] - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Checks for any expressions in this list.""" + or: [ApplicationSowDataFilter!] -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Negates the expression.""" + not: ApplicationSowDataFilter +} - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser +""" +A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationSowDataToManySowTab1Filter { + """ + Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab1Filter - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab1Filter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab1Filter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against `SowTab1` object types. All fields are combined with a logical ‘and.’ +""" +input SowTab1Filter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: IntakeCondition + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: IntakeFilter - ): IntakesConnection! -} + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. - """ - edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge!]! + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [SowTab1Filter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: IntakeCondition + """Checks for any expressions in this list.""" + or: [SowTab1Filter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: IntakeFilter - ): IntakesConnection! + """Negates the expression.""" + not: SowTab1Filter } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - +""" +A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationSowDataToManySowTab2Filter { """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge!]! + every: SowTab2Filter - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab2Filter - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """ + No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab2Filter } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +""" +A filter to be used against `SowTab2` object types. All fields are combined with a logical ‘and.’ +""" +input SowTab2Filter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: IntakeCondition + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: IntakeFilter - ): IntakesConnection! -} + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter -"""A connection to a list of `Application` values.""" -type ApplicationsConnection { - """A list of `Application` objects.""" - nodes: [Application]! + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean - """ - A list of edges which contains the `Application` and cursor to aid in pagination. - """ - edges: [ApplicationsEdge!]! + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Information to aid in pagination.""" - pageInfo: PageInfo! + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter + + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [SowTab2Filter!] + + """Checks for any expressions in this list.""" + or: [SowTab2Filter!] + + """Negates the expression.""" + not: SowTab2Filter } """ -Table containing the data associated with the CCBC respondents application +A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ """ -type Application implements Node { +input ApplicationSowDataToManySowTab7Filter { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - id: ID! + every: SowTab7Filter - """Primary key ID for the application""" - rowId: Int! + """ + Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab7Filter - """Reference number assigned to the application""" - ccbcNumber: String + """ + No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab7Filter +} - """The owner of the application, identified by its JWT sub""" - owner: String! +""" +A filter to be used against `SowTab7` object types. All fields are combined with a logical ‘and.’ +""" +input SowTab7Filter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """The intake associated with the application, set when it is submitted""" - intakeId: Int + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """created by user id""" - createdBy: Int + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """created at timestamp""" - createdAt: Datetime! + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """updated by user id""" - updatedBy: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """updated at timestamp""" - updatedAt: Datetime! + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """archived by user id""" - archivedBy: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """archived at timestamp""" - archivedAt: Datetime + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Reads a single `Intake` that is related to this `Application`.""" - intakeByIntakeId: Intake + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Reads a single `CcbcUser` that is related to this `Application`.""" - ccbcUserByCreatedBy: CcbcUser + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter - """Reads a single `CcbcUser` that is related to this `Application`.""" - ccbcUserByUpdatedBy: CcbcUser + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean - """Reads a single `CcbcUser` that is related to this `Application`.""" - ccbcUserByArchivedBy: CcbcUser + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [SowTab7Filter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition + """Checks for any expressions in this list.""" + or: [SowTab7Filter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + """Negates the expression.""" + not: SowTab7Filter +} - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationSowDataToManySowTab8Filter { + """ + Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab8Filter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab8Filter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab8Filter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `SowTab8` object types. All fields are combined with a logical ‘and.’ +""" +input SowTab8Filter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `sowId` field.""" + sowId: IntFilter - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AttachmentCondition + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Reads and enables pagination through a set of `ApplicationFormData`.""" - applicationFormDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationSowDataBySowId` relation.""" + applicationSowDataBySowId: ApplicationSowDataFilter - """The method to use when ordering `ApplicationFormData`.""" - orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] + """A related `applicationSowDataBySowId` exists.""" + applicationSowDataBySowIdExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationFormDataCondition + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFormDataFilter - ): ApplicationFormDataConnection! + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for all expressions in this list.""" + and: [SowTab8Filter!] - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for any expressions in this list.""" + or: [SowTab8Filter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnalystLeadCondition + """Negates the expression.""" + not: SowTab8Filter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! +""" +A filter to be used against many `CbcProject` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcProjectFilter { + """ + Every related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcProjectFilter - """Reads and enables pagination through a set of `ApplicationRfiData`.""" - applicationRfiDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcProjectFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `CbcProject` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcProjectFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against `CbcProject` object types. All fields are combined with a logical ‘and.’ +""" +input CbcProjectFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter - """The method to use when ordering `ApplicationRfiData`.""" - orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationRfiDataCondition + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationRfiDataFilter - ): ApplicationRfiDataConnection! + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AssessmentDataCondition + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Checks for all expressions in this list.""" + and: [CbcProjectFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for any expressions in this list.""" + or: [CbcProjectFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Negates the expression.""" + not: CbcProjectFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyChangeRequestDataFilter { + """ + Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ChangeRequestDataFilter - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPackageCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + """ + Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ChangeRequestDataFilter """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - conditionalApprovalDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + none: ChangeRequestDataFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +""" +input ChangeRequestDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ConditionalApprovalDataCondition + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `amendmentNumber` field.""" + amendmentNumber: IntFilter - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationGisDataCondition + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [ChangeRequestDataFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnnouncementCondition + """Checks for any expressions in this list.""" + or: [ChangeRequestDataFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + """Negates the expression.""" + not: ChangeRequestDataFilter +} +""" +A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyNotificationFilter { """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationGisAssessmentHhsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + every: NotificationFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: NotificationFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: NotificationFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `Notification` object types. All fields are combined with a logical ‘and.’ +""" +input NotificationFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `notificationType` field.""" + notificationType: StringFilter - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationGisAssessmentHhCondition + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + """Filter by the object’s `emailRecordId` field.""" + emailRecordId: IntFilter - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationSowDataCondition + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `emailRecordByEmailRecordId` relation.""" + emailRecordByEmailRecordId: EmailRecordFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `emailRecordByEmailRecordId` exists.""" + emailRecordByEmailRecordIdExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectInformationDataCondition + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [NotificationFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [NotificationFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: NotificationFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `EmailRecord` object types. All fields are combined with a logical ‘and.’ +""" +input EmailRecordFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `toEmail` field.""" + toEmail: StringFilter - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccEmail` field.""" + ccEmail: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ChangeRequestDataCondition + """Filter by the object’s `subject` field.""" + subject: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + """Filter by the object’s `body` field.""" + body: StringFilter - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `messageId` field.""" + messageId: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCommunityProgressReportDataCondition + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `notificationsByEmailRecordId` relation.""" + notificationsByEmailRecordId: EmailRecordToManyNotificationFilter - """Only read the last `n` values of the set.""" - last: Int + """Some related `notificationsByEmailRecordId` exist.""" + notificationsByEmailRecordIdExist: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCommunityReportExcelDataCondition + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [EmailRecordFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [EmailRecordFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: EmailRecordFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ +""" +input EmailRecordToManyNotificationFilter { + """ + Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: NotificationFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: NotificationFilter - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: NotificationFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationClaimsDataCondition +""" +A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationPackageFilter { + """ + Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPackageFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + """ + Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPackageFilter """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationClaimsExcelDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + none: ApplicationPackageFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationPackageFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `package` field.""" + package: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationClaimsExcelDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationMilestoneDataCondition + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for all expressions in this list.""" + and: [ApplicationPackageFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationPackageFilter!] - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """Negates the expression.""" + not: ApplicationPackageFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationMilestoneExcelDataCondition +""" +A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationProjectTypeFilter { + """ + Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationProjectTypeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + """ + Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationProjectTypeFilter """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationInternalDescriptionsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + none: ApplicationProjectTypeFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationProjectTypeFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `projectType` field.""" + projectType: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationInternalDescriptionCondition + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationProjectTypeCondition + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for all expressions in this list.""" + and: [ApplicationProjectTypeFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationProjectTypeFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Negates the expression.""" + not: ApplicationProjectTypeFilter +} - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `CcbcUser` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCcbcUserFilter { + """ + Every related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: NotificationCondition + """ + Some related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: NotificationFilter - ): NotificationsConnection! + """ + No related `CcbcUser` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CcbcUserFilter +} + +""" +A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyAttachmentFilter { + """ + Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AttachmentFilter """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ """ - applicationPendingChangeRequestsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + some: AttachmentFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AttachmentFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input AttachmentFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `file` field.""" + file: UUIDFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `description` field.""" + description: StringFilter - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `fileName` field.""" + fileName: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPendingChangeRequestCondition + """Filter by the object’s `fileType` field.""" + fileType: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + """Filter by the object’s `fileSize` field.""" + fileSize: StringFilter - """Reads and enables pagination through a set of `AssessmentData`.""" - allAssessments( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationStatusId` field.""" + applicationStatusId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter + + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter + + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter + + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter """ - computed column to return space separated list of amendment numbers for a change request + Filter by the object’s `applicationStatusByApplicationStatusId` relation. """ - amendmentNumbers: String + applicationStatusByApplicationStatusId: ApplicationStatusFilter - """Computed column to return analyst lead of an application""" - analystLead: String + """A related `applicationStatusByApplicationStatusId` exists.""" + applicationStatusByApplicationStatusIdExists: Boolean - """Computed column to return the analyst-visible status of an application""" - analystStatus: String + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Computed column that returns list of announcements for the application""" - announcements( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + """Checks for all expressions in this list.""" + and: [AttachmentFilter!] - """Computed column that takes the slug to return an assessment form""" - assessmentForm(_assessmentDataType: String!): AssessmentData + """Checks for any expressions in this list.""" + or: [AttachmentFilter!] - """Computed column to return conditional approval data""" - conditionalApproval: ConditionalApprovalData + """Negates the expression.""" + not: AttachmentFilter +} - """Computed column to return external status of an application""" - externalStatus: String +""" +A filter to be used against `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Computed column to display form_data""" - formData: FormData + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Computed column to return the GIS assessment household counts""" - gisAssessmentHh: ApplicationGisAssessmentHh + """Filter by the object’s `status` field.""" + status: StringFilter - """Computed column to return last GIS data for an application""" - gisData: ApplicationGisData + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Computed column to return whether the rfi is open""" - hasRfiOpen: Boolean + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Computed column that returns list of audit records for application""" - history( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `changeReason` field.""" + changeReason: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: HistoryItemFilter - ): HistoryItemsConnection! - intakeNumber: Int - internalDescription: String + """Filter by the object’s `attachmentsByApplicationStatusId` relation.""" + attachmentsByApplicationStatusId: ApplicationStatusToManyAttachmentFilter - """Computed column to display organization name from json data""" - organizationName: String + """Some related `attachmentsByApplicationStatusId` exist.""" + attachmentsByApplicationStatusIdExist: Boolean - """Computed column to return the internal description for an application""" - package: Int + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Computed column to return project information data""" - projectInformation: ProjectInformationData + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Computed column to display the project name""" - projectName: String + """Filter by the object’s `applicationStatusTypeByStatus` relation.""" + applicationStatusTypeByStatus: ApplicationStatusTypeFilter - """Computed column to return last RFI for an application""" - rfi: RfiData + """A related `applicationStatusTypeByStatus` exists.""" + applicationStatusTypeByStatusExists: Boolean - """Computed column to return status of an application""" - status: String + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Computed column to return the order of the status""" - statusOrder: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - Computed column to return the status order with the status name appended for sorting and filtering - """ - statusSortFilter: String - zone: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - Computed column to get single lowest zone from json data, used for sorting - """ - zones: [Int] + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusApplicationIdAndStatus( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for all expressions in this list.""" + and: [ApplicationStatusFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for any expressions in this list.""" + or: [ApplicationStatusFilter!] - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """Negates the expression.""" + not: ApplicationStatusFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusTypeCondition +""" +A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusToManyAttachmentFilter { + """ + Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AttachmentFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusTypeFilter - ): ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection! + """ + Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AttachmentFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AttachmentFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against `ApplicationStatusType` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusTypeFilter { + """Filter by the object’s `name` field.""" + name: StringFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `description` field.""" + description: StringFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `visibleByApplicant` field.""" + visibleByApplicant: BooleanFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `statusOrder` field.""" + statusOrder: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `visibleByAnalyst` field.""" + visibleByAnalyst: BooleanFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `applicationStatusesByStatus` relation.""" + applicationStatusesByStatus: ApplicationStatusTypeToManyApplicationStatusFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection! + """Some related `applicationStatusesByStatus` exist.""" + applicationStatusesByStatusExist: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [ApplicationStatusTypeFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [ApplicationStatusTypeFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: ApplicationStatusTypeFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationStatusTypeToManyApplicationStatusFilter { + """ + Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationStatusFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationStatusFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationStatusFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `GisData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyGisDataFilter { + """ + Every related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: GisDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection! + """ + Some related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: GisDataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `GisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: GisDataFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `Analyst` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyAnalystFilter { + """ + Every related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AnalystFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Some related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AnalystFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `Analyst` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AnalystFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against `Analyst` object types. All fields are combined with a logical ‘and.’ +""" +input AnalystFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `givenName` field.""" + givenName: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `familyName` field.""" + familyName: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentApplicationIdAndApplicationStatusId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `active` field.""" + active: BooleanFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition + """Filter by the object’s `email` field.""" + email: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection! + """Filter by the object’s `applicationAnalystLeadsByAnalystId` relation.""" + applicationAnalystLeadsByAnalystId: AnalystToManyApplicationAnalystLeadFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Some related `applicationAnalystLeadsByAnalystId` exist.""" + applicationAnalystLeadsByAnalystIdExist: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection! + """Checks for all expressions in this list.""" + and: [AnalystFilter!] - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for any expressions in this list.""" + or: [AnalystFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Negates the expression.""" + not: AnalystFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +""" +input AnalystToManyApplicationAnalystLeadFilter { + """ + Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnalystLeadFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnalystLeadFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnalystLeadFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationAnalystLeadFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `analystId` field.""" + analystId: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection! + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """Reads and enables pagination through a set of `FormData`.""" - formDataByApplicationFormDataApplicationIdAndFormDataId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `analystByAnalystId` relation.""" + analystByAnalystId: AnalystFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `analystByAnalystId` exists.""" + analystByAnalystIdExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection! + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadApplicationIdAndAnalystId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [ApplicationAnalystLeadFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [ApplicationAnalystLeadFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: ApplicationAnalystLeadFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationAnalystLeadFilter { + """ + Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnalystLeadFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnalystLeadFilter - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnalystLeadFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AnalystCondition +""" +A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationAnnouncementFilter { + """ + Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnnouncementFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnalystFilter - ): ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection! + """ + Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnnouncementFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnnouncementFilter +} - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationStatusFilter { + """ + Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationStatusFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationStatusFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationStatusFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `EmailRecord` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyEmailRecordFilter { + """ + Every related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: EmailRecordFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection! + """ + Some related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: EmailRecordFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `EmailRecord` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: EmailRecordFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `RecordVersion` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyRecordVersionFilter { + """ + Every related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: RecordVersionFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Some related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: RecordVersionFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `RecordVersion` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: RecordVersionFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against `RecordVersion` object types. All fields are combined with a logical ‘and.’ +""" +input RecordVersionFilter { + """Filter by the object’s `rowId` field.""" + rowId: BigIntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `recordId` field.""" + recordId: UUIDFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `oldRecordId` field.""" + oldRecordId: UUIDFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `op` field.""" + op: OperationFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ts` field.""" + ts: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `tableOid` field.""" + tableOid: BigFloatFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `tableSchema` field.""" + tableSchema: StringFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `tableName` field.""" + tableName: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `record` field.""" + record: JSONFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `oldRecord` field.""" + oldRecord: JSONFilter - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByApplicationRfiDataApplicationIdAndRfiDataId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Only read the last `n` values of the set.""" - last: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for all expressions in this list.""" + and: [RecordVersionFilter!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for any expressions in this list.""" + or: [RecordVersionFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Negates the expression.""" + not: RecordVersionFilter +} - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’ +""" +input BigIntFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: RfiDataCondition + """Equal to the specified value.""" + equalTo: BigInt - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: RfiDataFilter - ): ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection! + """Not equal to the specified value.""" + notEqualTo: BigInt - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataApplicationIdAndAssessmentDataType( - """Only read the first `n` values of the set.""" - first: Int + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: BigInt - """Only read the last `n` values of the set.""" - last: Int + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: BigInt - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Included in the specified list.""" + in: [BigInt!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Not included in the specified list.""" + notIn: [BigInt!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Less than the specified value.""" + lessThan: BigInt - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """Less than or equal to the specified value.""" + lessThanOrEqualTo: BigInt - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AssessmentTypeCondition + """Greater than the specified value.""" + greaterThan: BigInt - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AssessmentTypeFilter - ): ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection! + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: BigInt +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A signed eight-byte integer. The upper big integer values are greater than the +max value for a JavaScript number. Therefore all big integers will be output as +strings and not numbers. +""" +scalar BigInt - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against Operation fields. All fields are combined with a logical ‘and.’ +""" +input OperationFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Equal to the specified value.""" + equalTo: Operation - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Not equal to the specified value.""" + notEqualTo: Operation - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: Operation - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Operation - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Included in the specified list.""" + in: [Operation!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection! + """Not included in the specified list.""" + notIn: [Operation!] - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Less than the specified value.""" + lessThan: Operation - """Only read the last `n` values of the set.""" - last: Int + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Operation - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Greater than the specified value.""" + greaterThan: Operation - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Operation +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +enum Operation { + INSERT + UPDATE + DELETE + TRUNCATE +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against BigFloat fields. All fields are combined with a logical ‘and.’ +""" +input BigFloatFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Equal to the specified value.""" + equalTo: BigFloat - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection! + """Not equal to the specified value.""" + notEqualTo: BigFloat - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: BigFloat - """Only read the last `n` values of the set.""" - last: Int + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: BigFloat - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Included in the specified list.""" + in: [BigFloat!] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Not included in the specified list.""" + notIn: [BigFloat!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Less than the specified value.""" + lessThan: BigFloat - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Less than or equal to the specified value.""" + lessThanOrEqualTo: BigFloat - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Greater than the specified value.""" + greaterThan: BigFloat - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection! + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: BigFloat +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A floating point number that requires more precision than IEEE 754 binary 64 +""" +scalar BigFloat - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `SowTab1` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManySowTab1Filter { + """ + Every related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab1Filter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Some related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab1Filter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `SowTab1` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab1Filter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against many `SowTab2` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManySowTab2Filter { + """ + Every related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab2Filter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab2Filter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + No related `SowTab2` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab2Filter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection! +""" +A filter to be used against many `SowTab7` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManySowTab7Filter { + """ + Every related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab7Filter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab7Filter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `SowTab7` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab7Filter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `SowTab8` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManySowTab8Filter { + """ + Every related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: SowTab8Filter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: SowTab8Filter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `SowTab8` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: SowTab8Filter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationPendingChangeRequestFilter { + """ + Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPendingChangeRequestFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPendingChangeRequestFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection! + """ + No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPendingChangeRequestFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationPendingChangeRequestFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `isPending` field.""" + isPending: BooleanFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `comment` field.""" + comment: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `cbcId` field.""" + cbcId: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `cbcByCbcId` relation.""" + cbcByCbcId: CbcFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `cbcByCbcId` exists.""" + cbcByCbcIdExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [ApplicationPendingChangeRequestFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for any expressions in this list.""" + or: [ApplicationPendingChangeRequestFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection! + """Negates the expression.""" + not: ApplicationPendingChangeRequestFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against `Cbc` object types. All fields are combined with a logical ‘and.’ +""" +input CbcFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `projectNumber` field.""" + projectNumber: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataApplicationIdAndBatchId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Filter by the object’s `applicationPendingChangeRequestsByCbcId` relation. + """ + applicationPendingChangeRequestsByCbcId: CbcToManyApplicationPendingChangeRequestFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Some related `applicationPendingChangeRequestsByCbcId` exist.""" + applicationPendingChangeRequestsByCbcIdExist: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `cbcDataByCbcId` relation.""" + cbcDataByCbcId: CbcToManyCbcDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `cbcDataByCbcId` exist.""" + cbcDataByCbcIdExist: Boolean - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `cbcDataByProjectNumber` relation.""" + cbcDataByProjectNumber: CbcToManyCbcDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: GisDataCondition + """Some related `cbcDataByProjectNumber` exist.""" + cbcDataByProjectNumberExist: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: GisDataFilter - ): ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection! + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [CbcFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for any expressions in this list.""" + or: [CbcFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection! + """Negates the expression.""" + not: CbcFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input CbcToManyApplicationPendingChangeRequestFilter { + """ + Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPendingChangeRequestFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPendingChangeRequestFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPendingChangeRequestFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ +""" +input CbcToManyCbcDataFilter { + """ + Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcDataFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcDataFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against `CbcData` object types. All fields are combined with a logical ‘and.’ +""" +input CbcDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection! + """Filter by the object’s `cbcId` field.""" + cbcId: IntFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `projectNumber` field.""" + projectNumber: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementApplicationIdAndAnnouncementId( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `cbcByCbcId` relation.""" + cbcByCbcId: CbcFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `cbcByCbcId` exists.""" + cbcByCbcIdExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `cbcByProjectNumber` relation.""" + cbcByProjectNumber: CbcFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """A related `cbcByProjectNumber` exists.""" + cbcByProjectNumberExists: Boolean - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AnnouncementCondition + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnnouncementFilter - ): ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection! + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for all expressions in this list.""" + and: [CbcDataFilter!] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for any expressions in this list.""" + or: [CbcDataFilter!] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Negates the expression.""" + not: CbcDataFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `Cbc` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcFilter { + """ + Every related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection! + """ + Some related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcDataFilter { + """ + Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcDataFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against many `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyKeycloakJwtFilter { + """ + Every related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: KeycloakJwtFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: KeycloakJwtFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + No related `KeycloakJwt` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: KeycloakJwtFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection! +""" +A filter to be used against `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ +""" +input KeycloakJwtFilter { + """Filter by the object’s `jti` field.""" + jti: UUIDFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `exp` field.""" + exp: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `nbf` field.""" + nbf: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `iat` field.""" + iat: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `iss` field.""" + iss: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `aud` field.""" + aud: StringFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `sub` field.""" + sub: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `typ` field.""" + typ: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `azp` field.""" + azp: StringFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `authTime` field.""" + authTime: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `sessionState` field.""" + sessionState: UUIDFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `acr` field.""" + acr: StringFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `emailVerified` field.""" + emailVerified: BooleanFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `name` field.""" + name: StringFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `preferredUsername` field.""" + preferredUsername: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `givenName` field.""" + givenName: StringFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection! + """Filter by the object’s `familyName` field.""" + familyName: StringFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Filter by the object’s `email` field.""" + email: StringFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `brokerSessionId` field.""" + brokerSessionId: StringFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `priorityGroup` field.""" + priorityGroup: StringFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `identityProvider` field.""" + identityProvider: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `userGroups` field.""" + userGroups: StringListFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `authRole` field.""" + authRole: StringFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `ccbcUserBySub` relation.""" + ccbcUserBySub: CcbcUserFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection! + """A related `ccbcUserBySub` exists.""" + ccbcUserBySubExists: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [KeycloakJwtFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [KeycloakJwtFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: KeycloakJwtFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against String List fields. All fields are combined with a logical ‘and.’ +""" +input StringListFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Equal to the specified value.""" + equalTo: [String] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Not equal to the specified value.""" + notEqualTo: [String] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: [String] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection! + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: [String] - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Less than the specified value.""" + lessThan: [String] - """Only read the last `n` values of the set.""" - last: Int + """Less than or equal to the specified value.""" + lessThanOrEqualTo: [String] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Greater than the specified value.""" + greaterThan: [String] - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: [String] - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Contains the specified list of values.""" + contains: [String] - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Contained by the specified list of values.""" + containedBy: [String] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Overlaps the specified list of values.""" + overlaps: [String] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection! + """Any array item is equal to the specified value.""" + anyEqualTo: String - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Any array item is not equal to the specified value.""" + anyNotEqualTo: String - """Only read the last `n` values of the set.""" - last: Int + """Any array item is less than the specified value.""" + anyLessThan: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Any array item is less than or equal to the specified value.""" + anyLessThanOrEqualTo: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Any array item is greater than the specified value.""" + anyGreaterThan: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Any array item is greater than or equal to the specified value.""" + anyGreaterThanOrEqualTo: String +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `ConditionalApprovalData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyConditionalApprovalDataFilter { + """ + Every related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ConditionalApprovalDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ConditionalApprovalDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection! + """ + No related `ConditionalApprovalData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ConditionalApprovalDataFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationGisAssessmentHhFilter { + """ + Every related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationGisAssessmentHhFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationGisAssessmentHhFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `ApplicationGisAssessmentHh` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationGisAssessmentHhFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against `ApplicationGisAssessmentHh` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationGisAssessmentHhFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `eligible` field.""" + eligible: FloatFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Filter by the object’s `eligibleIndigenous` field.""" + eligibleIndigenous: FloatFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection! + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for all expressions in this list.""" + and: [ApplicationGisAssessmentHhFilter!] - """Only read the last `n` values of the set.""" - last: Int + """Checks for any expressions in this list.""" + or: [ApplicationGisAssessmentHhFilter!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Negates the expression.""" + not: ApplicationGisAssessmentHhFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against Float fields. All fields are combined with a logical ‘and.’ +""" +input FloatFilter { + """ + Is null (if `true` is specified) or is not null (if `false` is specified). + """ + isNull: Boolean - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Equal to the specified value.""" + equalTo: Float - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Not equal to the specified value.""" + notEqualTo: Float - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Not equal to the specified value, treating null like an ordinary value. + """ + distinctFrom: Float - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection! + """Equal to the specified value, treating null like an ordinary value.""" + notDistinctFrom: Float - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Included in the specified list.""" + in: [Float!] - """Only read the last `n` values of the set.""" - last: Int + """Not included in the specified list.""" + notIn: [Float!] - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Less than the specified value.""" + lessThan: Float - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Less than or equal to the specified value.""" + lessThanOrEqualTo: Float - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Greater than the specified value.""" + greaterThan: Float - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Greater than or equal to the specified value.""" + greaterThanOrEqualTo: Float +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `ApplicationGisData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationGisDataFilter { + """ + Every related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationGisDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection! + """ + Some related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationGisDataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `ApplicationGisData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationGisDataFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `ProjectInformationData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyProjectInformationDataFilter { + """ + Every related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ProjectInformationDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Some related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ProjectInformationDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `ProjectInformationData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ProjectInformationDataFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against many `ApplicationClaimsData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationClaimsDataFilter { + """ + Every related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationClaimsDataFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationClaimsDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + No related `ApplicationClaimsData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationClaimsDataFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection! +""" +A filter to be used against many `ApplicationClaimsExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationClaimsExcelDataFilter { + """ + Every related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationClaimsExcelDataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationClaimsExcelDataFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `ApplicationClaimsExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationClaimsExcelDataFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `ApplicationCommunityProgressReportData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationCommunityProgressReportDataFilter { + """ + Every related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationCommunityProgressReportDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationCommunityProgressReportDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `ApplicationCommunityProgressReportData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationCommunityProgressReportDataFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `ApplicationCommunityReportExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationCommunityReportExcelDataFilter { + """ + Every related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationCommunityReportExcelDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationCommunityReportExcelDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection! + """ + No related `ApplicationCommunityReportExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationCommunityReportExcelDataFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `ApplicationInternalDescription` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationInternalDescriptionFilter { + """ + Every related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationInternalDescriptionFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationInternalDescriptionFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `ApplicationInternalDescription` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationInternalDescriptionFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `ApplicationMilestoneData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationMilestoneDataFilter { + """ + Every related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationMilestoneDataFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationMilestoneDataFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `ApplicationMilestoneData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationMilestoneDataFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `ApplicationMilestoneExcelData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationMilestoneExcelDataFilter { + """ + Every related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationMilestoneExcelDataFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection! + """ + Some related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationMilestoneExcelDataFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `ApplicationMilestoneExcelData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationMilestoneExcelDataFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `ApplicationSowData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationSowDataFilter { + """ + Every related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationSowDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Some related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationSowDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `ApplicationSowData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationSowDataFilter +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A filter to be used against many `ChangeRequestData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyChangeRequestDataFilter { + """ + Every related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ChangeRequestDataFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Some related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ChangeRequestDataFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + No related `ChangeRequestData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ChangeRequestDataFilter +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection! +""" +A filter to be used against many `Notification` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyNotificationFilter { + """ + Every related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: NotificationFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + Some related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: NotificationFilter - """Only read the last `n` values of the set.""" - last: Int + """ + No related `Notification` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: NotificationFilter +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A filter to be used against many `ApplicationPackage` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationPackageFilter { + """ + Every related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPackageFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Some related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPackageFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + No related `ApplicationPackage` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPackageFilter +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +""" +A filter to be used against many `ApplicationProjectType` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationProjectTypeFilter { + """ + Every related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationProjectTypeFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Some related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationProjectTypeFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection! + """ + No related `ApplicationProjectType` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationProjectTypeFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `Attachment` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyAttachmentFilter { + """ + Every related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: AttachmentFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: AttachmentFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `Attachment` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: AttachmentFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A filter to be used against many `ApplicationAnalystLead` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationAnalystLeadFilter { + """ + Every related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnalystLeadFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnalystLeadFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `ApplicationAnalystLead` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnalystLeadFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `ApplicationAnnouncement` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationAnnouncementFilter { + """ + Every related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationAnnouncementFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection! + """ + Some related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationAnnouncementFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `ApplicationAnnouncement` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationAnnouncementFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against many `ApplicationFormData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationFormDataFilter { + """ + Every related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationFormDataFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Some related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationFormDataFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + No related `ApplicationFormData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationFormDataFilter +} + +""" +A filter to be used against many `ApplicationRfiData` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationRfiDataFilter { + """ + Every related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationRfiDataFilter + + """ + Some related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationRfiDataFilter + + """ + No related `ApplicationRfiData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationRfiDataFilter +} + +""" +A filter to be used against many `ApplicationStatus` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationStatusFilter { + """ + Every related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationStatusFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Some related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationStatusFilter - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + No related `ApplicationStatus` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationStatusFilter +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +""" +A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationPendingChangeRequestFilter { + """ + Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPendingChangeRequestFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection! + """ + Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPendingChangeRequestFilter - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPendingChangeRequestFilter +} - """Only read the last `n` values of the set.""" - last: Int +""" +A filter to be used against `GaplessCounter` object types. All fields are combined with a logical ‘and.’ +""" +input GaplessCounterFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `counter` field.""" + counter: IntFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `intakesByCounterId` relation.""" + intakesByCounterId: GaplessCounterToManyIntakeFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Some related `intakesByCounterId` exist.""" + intakesByCounterIdExist: Boolean - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for all expressions in this list.""" + and: [GaplessCounterFilter!] - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for any expressions in this list.""" + or: [GaplessCounterFilter!] - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection! + """Negates the expression.""" + not: GaplessCounterFilter +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against many `Intake` object types. All fields are combined with a logical ‘and.’ +""" +input GaplessCounterToManyIntakeFilter { + """ + Every related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: IntakeFilter - """Only read the last `n` values of the set.""" - last: Int + """ + Some related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: IntakeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + No related `Intake` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: IntakeFilter +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + """ + edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge!]! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection! +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndArchivedBy( + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27753,90 +28486,121 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection! + filter: IntakeFilter + ): IntakesConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +"""Methods to use when ordering `CcbcUser`.""" +enum CcbcUsersOrderBy { + NATURAL + ID_ASC + ID_DESC + SESSION_SUB_ASC + SESSION_SUB_DESC + GIVEN_NAME_ASC + GIVEN_NAME_DESC + FAMILY_NAME_ASC + FAMILY_NAME_DESC + EMAIL_ADDRESS_ASC + EMAIL_ADDRESS_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + EXTERNAL_ANALYST_ASC + EXTERNAL_ANALYST_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `CcbcUser` object types. All fields are tested +for equality and combined with a logical ‘and.’ +""" +input CcbcUserCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `sessionSub` field.""" + sessionSub: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `givenName` field.""" + givenName: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `familyName` field.""" + familyName: String - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `emailAddress` field.""" + emailAddress: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection! + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `externalAnalyst` field.""" + externalAnalyst: Boolean +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + """ + edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge!]! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection! + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedBy( + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27855,56 +28619,48 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int + filter: IntakeFilter + ): IntakesConnection! +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + """ + edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge!]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Information to aid in pagination.""" + pageInfo: PageInfo! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -27923,90 +28679,131 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection! + filter: IntakeFilter + ): IntakesConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +"""Methods to use when ordering `Application`.""" +enum ApplicationsOrderBy { + NATURAL + ID_ASC + ID_DESC + CCBC_NUMBER_ASC + CCBC_NUMBER_DESC + OWNER_ASC + OWNER_DESC + INTAKE_ID_ASC + INTAKE_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + ANALYST_LEAD_ASC + ANALYST_LEAD_DESC + INTAKE_NUMBER_ASC + INTAKE_NUMBER_DESC + ORGANIZATION_NAME_ASC + ORGANIZATION_NAME_DESC + PACKAGE_ASC + PACKAGE_DESC + PROJECT_NAME_ASC + PROJECT_NAME_DESC + STATUS_ASC + STATUS_DESC + STATUS_ORDER_ASC + STATUS_ORDER_DESC + STATUS_SORT_FILTER_ASC + STATUS_SORT_FILTER_DESC + ZONE_ASC + ZONE_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `Application` object types. All fields are tested +for equality and combined with a logical ‘and.’ +""" +input ApplicationCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `ccbcNumber` field.""" + ccbcNumber: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `owner` field.""" + owner: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `intakeId` field.""" + intakeId: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection! + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A connection to a list of `CcbcUser` values, with data from `Application`. +""" +type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + """ + edges: [IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge!]! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection! +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedBy( + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28025,22 +28822,50 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): ApplicationsConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedBy( +""" +A connection to a list of `CcbcUser` values, with data from `Application`. +""" +type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + """ + edges: [IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28059,22 +28884,50 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): ApplicationsConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedBy( +""" +A connection to a list of `CcbcUser` values, with data from `Application`. +""" +type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + """ + edges: [IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -28093,22 +28946,109 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): ApplicationsConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedBy( +"""A connection to a list of `AssessmentData` values.""" +type AssessmentDataConnection { + """A list of `AssessmentData` objects.""" + nodes: [AssessmentData]! + + """ + A list of edges which contains the `AssessmentData` and cursor to aid in pagination. + """ + edges: [AssessmentDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `AssessmentData` you could get from the connection. + """ + totalCount: Int! +} + +type AssessmentData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + rowId: Int! + applicationId: Int! + + """ + The json form data of the assessment form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fassessment_data.json) + """ + jsonData: JSON! + assessmentDataType: String + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """ + Reads a single `Application` that is related to this `AssessmentData`. + """ + applicationByApplicationId: Application + + """ + Reads a single `AssessmentType` that is related to this `AssessmentData`. + """ + assessmentTypeByAssessmentDataType: AssessmentType + + """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" + ccbcUserByArchivedBy: CcbcUser +} + +""" +Table containing the different assessment types that can be assigned to an assessment +""" +type AssessmentType implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Name of and primary key of the type of an assessment""" + name: String! + + """Description of the assessment type""" + description: String + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -28127,22 +29067,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAssessmentDataAssessmentDataTypeAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -28161,22 +29101,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndCreatedBy( + ccbcUsersByAssessmentDataAssessmentDataTypeAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28207,10 +29147,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection! + ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndUpdatedBy( + ccbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28241,10 +29181,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection! + ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndArchivedBy( + ccbcUsersByAssessmentDataAssessmentDataTypeAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -28275,78 +29215,103 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection! + ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection! +} - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationApplicationIdAndEmailRecordId( - """Only read the first `n` values of the set.""" - first: Int +"""Methods to use when ordering `AssessmentData`.""" +enum AssessmentDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + ASSESSMENT_DATA_TYPE_ASC + ASSESSMENT_DATA_TYPE_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `AssessmentData` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input AssessmentDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `assessmentDataType` field.""" + assessmentDataType: String - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: EmailRecordCondition + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: EmailRecordFilter - ): ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection! + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A connection to a list of `Application` values, with data from `AssessmentData`. +""" +type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge!]! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection! +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndUpdatedBy( + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -28365,56 +29330,50 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge!]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Information to aid in pagination.""" + pageInfo: PageInfo! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28433,22 +29392,50 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedBy( +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28467,22 +29454,50 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedBy( +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -28501,55 +29516,66 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `ApplicationStatus` values.""" -type ApplicationStatusesConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +"""A `AssessmentData` edge in the connection.""" +type AssessmentDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `AssessmentData` at the end of the edge.""" + node: AssessmentData +} + +"""A connection to a list of `ConditionalApprovalData` values.""" +type ConditionalApprovalDataConnection { + """A list of `ConditionalApprovalData` objects.""" + nodes: [ConditionalApprovalData]! """ - A list of edges which contains the `ApplicationStatus` and cursor to aid in pagination. + A list of edges which contains the `ConditionalApprovalData` and cursor to aid in pagination. """ - edges: [ApplicationStatusesEdge!]! + edges: [ConditionalApprovalDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationStatus` you could get from the connection. + The count of *all* `ConditionalApprovalData` you could get from the connection. """ totalCount: Int! } -"""Table containing information about possible application statuses""" -type ApplicationStatus implements Node { +"""Table to store conditional approval data""" +type ConditionalApprovalData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the application_status""" + """Unique id for the row""" rowId: Int! - """ID of the application this status belongs to""" + """The foreign key of an application""" applicationId: Int - """The status of the application""" - status: String + """ + The json form data of the conditional approval form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fconditional_approval_data.json) + """ + jsonData: JSON! """created by user id""" createdBy: Int @@ -28557,8 +29583,11 @@ type ApplicationStatus implements Node { """created at timestamp""" createdAt: Datetime! - """Change reason for analyst status change""" - changeReason: String + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! """archived by user id""" archivedBy: Int @@ -28566,232 +29595,301 @@ type ApplicationStatus implements Node { """archived at timestamp""" archivedAt: Datetime - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - """ - Reads a single `Application` that is related to this `ApplicationStatus`. + Reads a single `Application` that is related to this `ConditionalApprovalData`. """ applicationByApplicationId: Application """ - Reads a single `ApplicationStatusType` that is related to this `ApplicationStatus`. + Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. """ - applicationStatusTypeByStatus: ApplicationStatusType - - """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" + """ + Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + """ ccbcUserByArchivedBy: CcbcUser +} - """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" - ccbcUserByUpdatedBy: CcbcUser +"""A `ConditionalApprovalData` edge in the connection.""" +type ConditionalApprovalDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( - """Only read the first `n` values of the set.""" - first: Int + """The `ConditionalApprovalData` at the end of the edge.""" + node: ConditionalApprovalData +} - """Only read the last `n` values of the set.""" - last: Int +"""Methods to use when ordering `ConditionalApprovalData`.""" +enum ConditionalApprovalDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A condition to be used against `ConditionalApprovalData` object types. All +fields are tested for equality and combined with a logical ‘and.’ +""" +input ConditionalApprovalDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AttachmentCondition + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentApplicationStatusIdAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +"""A connection to a list of `ApplicationGisAssessmentHh` values.""" +type ApplicationGisAssessmentHhsConnection { + """A list of `ApplicationGisAssessmentHh` objects.""" + nodes: [ApplicationGisAssessmentHh]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + A list of edges which contains the `ApplicationGisAssessmentHh` and cursor to aid in pagination. + """ + edges: [ApplicationGisAssessmentHhsEdge!]! - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition + """ + The count of *all* `ApplicationGisAssessmentHh` you could get from the connection. + """ + totalCount: Int! +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection! +"""Table containing data for the gis assessment hh numbers""" +type ApplicationGisAssessmentHh implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationStatusIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Primary key and unique identifier""" + rowId: Int! - """Only read the last `n` values of the set.""" - last: Int + """The application_id of the application this record is associated with""" + applicationId: Int! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """The number of eligible households""" + eligible: Float - """Read all values in the set before (above) this cursor.""" - before: Cursor + """The number of eligible indigenous households""" + eligibleIndigenous: Float - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Reads a single `Application` that is related to this `ApplicationGisAssessmentHh`. + """ + applicationByApplicationId: Application +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +"""A `ApplicationGisAssessmentHh` edge in the connection.""" +type ApplicationGisAssessmentHhsEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """The `ApplicationGisAssessmentHh` at the end of the edge.""" + node: ApplicationGisAssessmentHh +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection! +"""Methods to use when ordering `ApplicationGisAssessmentHh`.""" +enum ApplicationGisAssessmentHhsOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + ELIGIBLE_ASC + ELIGIBLE_DESC + ELIGIBLE_INDIGENOUS_ASC + ELIGIBLE_INDIGENOUS_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationStatusIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A condition to be used against `ApplicationGisAssessmentHh` object types. All +fields are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationGisAssessmentHhCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `eligible` field.""" + eligible: Float - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `eligibleIndigenous` field.""" + eligibleIndigenous: Float +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +"""A connection to a list of `ApplicationGisData` values.""" +type ApplicationGisDataConnection { + """A list of `ApplicationGisData` objects.""" + nodes: [ApplicationGisData]! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + A list of edges which contains the `ApplicationGisData` and cursor to aid in pagination. + """ + edges: [ApplicationGisDataEdge!]! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection! + """ + The count of *all* `ApplicationGisData` you could get from the connection. + """ + totalCount: Int! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationStatusIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +type ApplicationGisData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + rowId: Int! + batchId: Int + applicationId: Int - """Only read the last `n` values of the set.""" - last: Int + """ + The data imported from the GIS data Excel file. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fapplication_gis_data.json) + """ + jsonData: JSON! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created by user id""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated by user id""" + updatedBy: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection! -} + """archived at timestamp""" + archivedAt: Datetime -""" -Table containing the different statuses that can be assigned to an application -""" -type ApplicationStatusType implements Node { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + Reads a single `GisData` that is related to this `ApplicationGisData`. """ - id: ID! + gisDataByBatchId: GisData - """Name of and primary key of the status of an application""" - name: String! + """ + Reads a single `Application` that is related to this `ApplicationGisData`. + """ + applicationByApplicationId: Application - """Description of the status type""" - description: String + """ + Reads a single `CcbcUser` that is related to this `ApplicationGisData`. + """ + ccbcUserByCreatedBy: CcbcUser """ - Boolean column used to differentiate internal/external status by indicating whether the status is visible to the applicant or not. + Reads a single `CcbcUser` that is related to this `ApplicationGisData`. """ - visibleByApplicant: Boolean + ccbcUserByUpdatedBy: CcbcUser - """The logical order in which the status should be displayed.""" - statusOrder: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationGisData`. + """ + ccbcUserByArchivedBy: CcbcUser +} +"""Table containing the uploaded GIS data in JSON format""" +type GisData implements Node { """ - Boolean column used to differentiate internal/external status by indicating whether the status is visible to the analyst or not. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - visibleByAnalyst: Boolean + id: ID! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """Primary key and unique identifier""" + rowId: Int! + + """ + The data imported from the GIS data Excel file. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fgis_data.json) + """ + jsonData: JSON! + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `CcbcUser` that is related to this `GisData`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `GisData`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `GisData`.""" + ccbcUserByArchivedBy: CcbcUser + + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -28810,22 +29908,22 @@ type ApplicationStatusType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusStatusAndApplicationId( + applicationsByApplicationGisDataBatchIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -28856,10 +29954,10 @@ type ApplicationStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection! + ): GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusStatusAndCreatedBy( + ccbcUsersByApplicationGisDataBatchIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28890,10 +29988,10 @@ type ApplicationStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection! + ): GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusStatusAndArchivedBy( + ccbcUsersByApplicationGisDataBatchIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28924,10 +30022,10 @@ type ApplicationStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection! + ): GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusStatusAndUpdatedBy( + ccbcUsersByApplicationGisDataBatchIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -28958,83 +30056,83 @@ type ApplicationStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection! + ): GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `ApplicationStatus`.""" -enum ApplicationStatusesOrderBy { +"""Methods to use when ordering `ApplicationGisData`.""" +enum ApplicationGisDataOrderBy { NATURAL ID_ASC ID_DESC + BATCH_ID_ASC + BATCH_ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - STATUS_ASC - STATUS_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC CREATED_AT_DESC - CHANGE_REASON_ASC - CHANGE_REASON_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC UPDATED_BY_ASC UPDATED_BY_DESC UPDATED_AT_ASC UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationStatus` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationGisData` object types. All fields +are tested for equality and combined with a logical ‘and.’ """ -input ApplicationStatusCondition { +input ApplicationGisDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int + """Checks for equality with the object’s `batchId` field.""" + batchId: Int + """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `status` field.""" - status: String + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON """Checks for equality with the object’s `createdBy` field.""" createdBy: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `changeReason` field.""" - changeReason: String - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime """Checks for equality with the object’s `updatedBy` field.""" updatedBy: Int """Checks for equality with the object’s `updatedAt` field.""" updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } """ -A connection to a list of `Application` values, with data from `ApplicationStatus`. +A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection { +type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge!]! + edges: [GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -29044,17 +30142,17 @@ type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdM } """ -A `Application` edge in the connection, with data from `ApplicationStatus`. +A `Application` edge in the connection, with data from `ApplicationGisData`. """ -type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge { +type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -29073,113 +30171,32 @@ type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! -} - -"""Methods to use when ordering `Application`.""" -enum ApplicationsOrderBy { - NATURAL - ID_ASC - ID_DESC - CCBC_NUMBER_ASC - CCBC_NUMBER_DESC - OWNER_ASC - OWNER_DESC - INTAKE_ID_ASC - INTAKE_ID_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - ANALYST_LEAD_ASC - ANALYST_LEAD_DESC - INTAKE_NUMBER_ASC - INTAKE_NUMBER_DESC - ORGANIZATION_NAME_ASC - ORGANIZATION_NAME_DESC - PACKAGE_ASC - PACKAGE_DESC - PROJECT_NAME_ASC - PROJECT_NAME_DESC - STATUS_ASC - STATUS_DESC - STATUS_ORDER_ASC - STATUS_ORDER_DESC - STATUS_SORT_FILTER_ASC - STATUS_SORT_FILTER_DESC - ZONE_ASC - ZONE_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `Application` object types. All fields are tested -for equality and combined with a logical ‘and.’ -""" -input ApplicationCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `ccbcNumber` field.""" - ccbcNumber: String - - """Checks for equality with the object’s `owner` field.""" - owner: String - - """Checks for equality with the object’s `intakeId` field.""" - intakeId: Int - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection { +type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge!]! + edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -29189,17 +30206,17 @@ type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge { +type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -29218,32 +30235,32 @@ type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection { +type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge!]! + edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -29253,17 +30270,17 @@ type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToM } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge { +type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -29282,32 +30299,32 @@ type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection { +type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge!]! + edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -29317,17 +30334,17 @@ type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge { +type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -29346,74 +30363,364 @@ type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `Attachment` values.""" -type AttachmentsConnection { - """A list of `Attachment` objects.""" - nodes: [Attachment]! +"""A `ApplicationGisData` edge in the connection.""" +type ApplicationGisDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationGisData` at the end of the edge.""" + node: ApplicationGisData +} + +"""A connection to a list of `ProjectInformationData` values.""" +type ProjectInformationDataConnection { + """A list of `ProjectInformationData` objects.""" + nodes: [ProjectInformationData]! """ - A list of edges which contains the `Attachment` and cursor to aid in pagination. + A list of edges which contains the `ProjectInformationData` and cursor to aid in pagination. """ - edges: [AttachmentsEdge!]! + edges: [ProjectInformationDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Attachment` you could get from the connection.""" + """ + The count of *all* `ProjectInformationData` you could get from the connection. + """ totalCount: Int! } -"""Table containing information about uploaded attachments""" -type Attachment implements Node { +"""Table to store project information data""" +type ProjectInformationData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the attachment""" + """Unique id for the row""" rowId: Int! + """The foreign key of an application""" + applicationId: Int + """ - Universally Unique ID for the attachment, created by the fastapi storage micro-service + The json form data of the project information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fproject_information_data.json) """ - file: UUID + jsonData: JSON! - """Description of the attachment""" - description: String + """created by user id""" + createdBy: Int - """Original uploaded file name""" - fileName: String + """created at timestamp""" + createdAt: Datetime! - """Original uploaded file type""" - fileType: String + """updated by user id""" + updatedBy: Int - """Original uploaded file size""" - fileSize: String + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """ + Reads a single `Application` that is related to this `ProjectInformationData`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ProjectInformationData`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ProjectInformationData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ProjectInformationData`. + """ + ccbcUserByArchivedBy: CcbcUser +} + +"""A `ProjectInformationData` edge in the connection.""" +type ProjectInformationDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ProjectInformationData` at the end of the edge.""" + node: ProjectInformationData +} + +"""Methods to use when ordering `ProjectInformationData`.""" +enum ProjectInformationDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ProjectInformationData` object types. All +fields are tested for equality and combined with a logical ‘and.’ +""" +input ProjectInformationDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +"""A connection to a list of `ApplicationClaimsData` values.""" +type ApplicationClaimsDataConnection { + """A list of `ApplicationClaimsData` objects.""" + nodes: [ApplicationClaimsData]! + + """ + A list of edges which contains the `ApplicationClaimsData` and cursor to aid in pagination. + """ + edges: [ApplicationClaimsDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationClaimsData` you could get from the connection. + """ + totalCount: Int! +} + +"""Table containing the claims data for the given application""" +type ApplicationClaimsData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Unique id for the claims""" + rowId: Int! + + """Id of the application the claims belongs to""" + applicationId: Int + + """The claims form json data""" + jsonData: JSON! + + """The id of the excel data that this record is associated with""" + excelDataId: Int + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Column to track if record was created, updated or deleted for history""" + historyOperation: String + + """ + Reads a single `Application` that is related to this `ApplicationClaimsData`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. + """ + ccbcUserByArchivedBy: CcbcUser +} + +"""A `ApplicationClaimsData` edge in the connection.""" +type ApplicationClaimsDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationClaimsData` at the end of the edge.""" + node: ApplicationClaimsData +} + +"""Methods to use when ordering `ApplicationClaimsData`.""" +enum ApplicationClaimsDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + EXCEL_DATA_ID_ASC + EXCEL_DATA_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + HISTORY_OPERATION_ASC + HISTORY_OPERATION_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ApplicationClaimsData` object types. All fields +are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationClaimsDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `excelDataId` field.""" + excelDataId: Int + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `historyOperation` field.""" + historyOperation: String +} + +"""A connection to a list of `ApplicationClaimsExcelData` values.""" +type ApplicationClaimsExcelDataConnection { + """A list of `ApplicationClaimsExcelData` objects.""" + nodes: [ApplicationClaimsExcelData]! + + """ + A list of edges which contains the `ApplicationClaimsExcelData` and cursor to aid in pagination. + """ + edges: [ApplicationClaimsExcelDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! """ - The id of the project (ccbc_public.application.id) that the attachment was uploaded to + The count of *all* `ApplicationClaimsExcelData` you could get from the connection. """ - applicationId: Int! + totalCount: Int! +} +"""Table containing the claims excel data for the given application""" +type ApplicationClaimsExcelData implements Node { """ - The id of the application_status (ccbc_public.application_status.id) that the attachment references + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - applicationStatusId: Int + id: ID! + + """Unique ID for the claims excel data""" + rowId: Int! + + """ID of the application this data belongs to""" + applicationId: Int + + """The data imported from the excel filled by the respondent""" + jsonData: JSON! """created by user id""" createdBy: Int @@ -29433,52 +30740,45 @@ type Attachment implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `Application` that is related to this `Attachment`.""" + """ + Reads a single `Application` that is related to this `ApplicationClaimsExcelData`. + """ applicationByApplicationId: Application """ - Reads a single `ApplicationStatus` that is related to this `Attachment`. + Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. """ - applicationStatusByApplicationStatusId: ApplicationStatus - - """Reads a single `CcbcUser` that is related to this `Attachment`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `Attachment`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `Attachment`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. + """ ccbcUserByArchivedBy: CcbcUser } -"""A `Attachment` edge in the connection.""" -type AttachmentsEdge { +"""A `ApplicationClaimsExcelData` edge in the connection.""" +type ApplicationClaimsExcelDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Attachment` at the end of the edge.""" - node: Attachment + """The `ApplicationClaimsExcelData` at the end of the edge.""" + node: ApplicationClaimsExcelData } -"""Methods to use when ordering `Attachment`.""" -enum AttachmentsOrderBy { +"""Methods to use when ordering `ApplicationClaimsExcelData`.""" +enum ApplicationClaimsExcelDataOrderBy { NATURAL ID_ASC ID_DESC - FILE_ASC - FILE_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - FILE_NAME_ASC - FILE_NAME_DESC - FILE_TYPE_ASC - FILE_TYPE_DESC - FILE_SIZE_ASC - FILE_SIZE_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - APPLICATION_STATUS_ID_ASC - APPLICATION_STATUS_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -29496,33 +30796,18 @@ enum AttachmentsOrderBy { } """ -A condition to be used against `Attachment` object types. All fields are tested -for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationClaimsExcelData` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -input AttachmentCondition { +input ApplicationClaimsExcelDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `file` field.""" - file: UUID - - """Checks for equality with the object’s `description` field.""" - description: String - - """Checks for equality with the object’s `fileName` field.""" - fileName: String - - """Checks for equality with the object’s `fileType` field.""" - fileType: String - - """Checks for equality with the object’s `fileSize` field.""" - fileSize: String - """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `applicationStatusId` field.""" - applicationStatusId: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -29544,325 +30829,349 @@ input AttachmentCondition { } """ -A connection to a list of `Application` values, with data from `Attachment`. +A connection to a list of `ApplicationCommunityProgressReportData` values. """ -type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type ApplicationCommunityProgressReportDataConnection { + """A list of `ApplicationCommunityProgressReportData` objects.""" + nodes: [ApplicationCommunityProgressReportData]! """ - A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationCommunityProgressReportData` and cursor to aid in pagination. """ - edges: [ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge!]! + edges: [ApplicationCommunityProgressReportDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationCommunityProgressReportData` you could get from the connection. + """ totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +""" +Table containing the Community Progress Report data for the given application +""" +type ApplicationCommunityProgressReportData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `Application` at the end of the edge.""" - node: Application + """Unique ID for the Community Progress Report""" + rowId: Int! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """ID of the application this Community Progress Report belongs to""" + applicationId: Int - """Only read the last `n` values of the set.""" - last: Int + """ + The due date, date received and the file information of the Community Progress Report Excel file + """ + jsonData: JSON! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created by user id""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated by user id""" + updatedBy: Int - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AttachmentCondition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! -} + """archived at timestamp""" + archivedAt: Datetime -""" -A connection to a list of `CcbcUser` values, with data from `Attachment`. -""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """The id of the excel data that this record is associated with""" + excelDataId: Int + + """History operation""" + historyOperation: String """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + Reads a single `Application` that is related to this `ApplicationCommunityProgressReportData`. """ - edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyEdge!]! + applicationByApplicationId: Application - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. + """ + ccbcUserByCreatedBy: CcbcUser - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyEdge { +"""A `ApplicationCommunityProgressReportData` edge in the connection.""" +type ApplicationCommunityProgressReportDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationCommunityProgressReportData` at the end of the edge.""" + node: ApplicationCommunityProgressReportData +} - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +Methods to use when ordering `ApplicationCommunityProgressReportData`. +""" +enum ApplicationCommunityProgressReportDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + EXCEL_DATA_ID_ASC + EXCEL_DATA_ID_DESC + HISTORY_OPERATION_ASC + HISTORY_OPERATION_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `ApplicationCommunityProgressReportData` object +types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationCommunityProgressReportDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AttachmentCondition + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `excelDataId` field.""" + excelDataId: Int + + """Checks for equality with the object’s `historyOperation` field.""" + historyOperation: String } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `ApplicationCommunityReportExcelData` values. """ -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationCommunityReportExcelDataConnection { + """A list of `ApplicationCommunityReportExcelData` objects.""" + nodes: [ApplicationCommunityReportExcelData]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationCommunityReportExcelData` and cursor to aid in pagination. """ - edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCommunityReportExcelDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationCommunityReportExcelData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +""" +Table containing the Community Report excel data for the given application +""" +type ApplicationCommunityReportExcelData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Unique ID for the Community Report excel data""" + rowId: Int! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ID of the application this Community Report belongs to""" + applicationId: Int - """Only read the last `n` values of the set.""" - last: Int + """The data imported from the excel filled by the respondent""" + jsonData: JSON! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created by user id""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated by user id""" + updatedBy: Int - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AttachmentCondition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! -} + """archived at timestamp""" + archivedAt: Datetime -""" -A connection to a list of `CcbcUser` values, with data from `Attachment`. -""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """ + Reads a single `Application` that is related to this `ApplicationCommunityReportExcelData`. + """ + applicationByApplicationId: Application """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. """ - edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge!]! + ccbcUserByCreatedBy: CcbcUser - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + """ + ccbcUserByUpdatedBy: CcbcUser - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge { +"""A `ApplicationCommunityReportExcelData` edge in the connection.""" +type ApplicationCommunityReportExcelDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AttachmentCondition + """The `ApplicationCommunityReportExcelData` at the end of the edge.""" + node: ApplicationCommunityReportExcelData +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! +"""Methods to use when ordering `ApplicationCommunityReportExcelData`.""" +enum ApplicationCommunityReportExcelDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } -"""A `ApplicationStatus` edge in the connection.""" -type ApplicationStatusesEdge { - """A cursor for use in pagination.""" - cursor: Cursor +""" +A condition to be used against `ApplicationCommunityReportExcelData` object +types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationCommunityReportExcelDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus -} + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int -"""A connection to a list of `ApplicationFormData` values.""" -type ApplicationFormDataConnection { - """A list of `ApplicationFormData` objects.""" - nodes: [ApplicationFormData]! + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """ - A list of edges which contains the `ApplicationFormData` and cursor to aid in pagination. - """ - edges: [ApplicationFormDataEdge!]! + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - The count of *all* `ApplicationFormData` you could get from the connection. - """ - totalCount: Int! -} + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int -"""Table to pair an application to form data""" -type ApplicationFormData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """The foreign key of a form""" - formDataId: Int! + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """The foreign key of an application""" - applicationId: Int! +"""A connection to a list of `ApplicationInternalDescription` values.""" +type ApplicationInternalDescriptionsConnection { + """A list of `ApplicationInternalDescription` objects.""" + nodes: [ApplicationInternalDescription]! """ - Reads a single `FormData` that is related to this `ApplicationFormData`. + A list of edges which contains the `ApplicationInternalDescription` and cursor to aid in pagination. """ - formDataByFormDataId: FormData + edges: [ApplicationInternalDescriptionsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! """ - Reads a single `Application` that is related to this `ApplicationFormData`. + The count of *all* `ApplicationInternalDescription` you could get from the connection. """ - applicationByApplicationId: Application + totalCount: Int! } -"""Table to hold applicant form data""" -type FormData implements Node { +"""Table containing the internal description for the given application""" +type ApplicationInternalDescription implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The unique id of the form data""" + """Unique id for the row""" rowId: Int! - """ - The json form data of the project information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fform_data.json) - """ - jsonData: JSON! - - """Column saving the key of the last edited form page""" - lastEditedPage: String + """Id of the application the description belongs to""" + applicationId: Int - """Column referencing the form data status type, defaults to draft""" - formDataStatusTypeId: String + """The internal description for the given application""" + description: String """created by user id""" createdBy: Int @@ -29882,322 +31191,343 @@ type FormData implements Node { """archived at timestamp""" archivedAt: Datetime - """Schema for the respective form_data""" - formSchemaId: Int - - """Column to track analysts reason for changing form data""" - reasonForChange: String - """ - Reads a single `FormDataStatusType` that is related to this `FormData`. + Reads a single `Application` that is related to this `ApplicationInternalDescription`. """ - formDataStatusTypeByFormDataStatusTypeId: FormDataStatusType + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `FormData`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `FormData`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `FormData`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. + """ ccbcUserByArchivedBy: CcbcUser +} - """Reads a single `Form` that is related to this `FormData`.""" - formByFormSchemaId: Form - - """Reads and enables pagination through a set of `ApplicationFormData`.""" - applicationFormDataByFormDataId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int +"""A `ApplicationInternalDescription` edge in the connection.""" +type ApplicationInternalDescriptionsEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """The `ApplicationInternalDescription` at the end of the edge.""" + node: ApplicationInternalDescription +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +"""Methods to use when ordering `ApplicationInternalDescription`.""" +enum ApplicationInternalDescriptionsOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A condition to be used against `ApplicationInternalDescription` object types. +All fields are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationInternalDescriptionCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """The method to use when ordering `ApplicationFormData`.""" - orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationFormDataCondition + """Checks for equality with the object’s `description` field.""" + description: String - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFormDataFilter - ): ApplicationFormDataConnection! + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """computed column to display whether form_data is editable or not""" - isEditable: Boolean + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationFormDataFormDataIdAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +"""A connection to a list of `ApplicationMilestoneData` values.""" +type ApplicationMilestoneDataConnection { + """A list of `ApplicationMilestoneData` objects.""" + nodes: [ApplicationMilestoneData]! - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """ + A list of edges which contains the `ApplicationMilestoneData` and cursor to aid in pagination. + """ + edges: [ApplicationMilestoneDataEdge!]! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection! + """ + The count of *all* `ApplicationMilestoneData` you could get from the connection. + """ + totalCount: Int! } -"""The statuses applicable to a form""" -type FormDataStatusType implements Node { +"""Table containing the milestone data for the given application""" +type ApplicationMilestoneData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The name of the status type""" - name: String! + """Unique id for the milestone""" + rowId: Int! - """The description of the status type""" - description: String + """Id of the application the milestone belongs to""" + applicationId: Int - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( - """Only read the first `n` values of the set.""" - first: Int + """The milestone form json data""" + jsonData: JSON! - """Only read the last `n` values of the set.""" - last: Int + """The id of the excel data that this record is associated with""" + excelDataId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created by user id""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated by user id""" + updatedBy: Int - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! + """archived at timestamp""" + archivedAt: Datetime - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormDataStatusTypeIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """History operation""" + historyOperation: String - """Only read the last `n` values of the set.""" - last: Int + """ + Reads a single `Application` that is related to this `ApplicationMilestoneData`. + """ + applicationByApplicationId: Application - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + """ + ccbcUserByCreatedBy: CcbcUser - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + """ + ccbcUserByUpdatedBy: CcbcUser - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + """ + ccbcUserByArchivedBy: CcbcUser +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +"""A `ApplicationMilestoneData` edge in the connection.""" +type ApplicationMilestoneDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """The `ApplicationMilestoneData` at the end of the edge.""" + node: ApplicationMilestoneData +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection! +"""Methods to use when ordering `ApplicationMilestoneData`.""" +enum ApplicationMilestoneDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + EXCEL_DATA_ID_ASC + EXCEL_DATA_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + HISTORY_OPERATION_ASC + HISTORY_OPERATION_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormDataStatusTypeIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A condition to be used against `ApplicationMilestoneData` object types. All +fields are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationMilestoneDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `excelDataId` field.""" + excelDataId: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection! + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormDataStatusTypeIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `historyOperation` field.""" + historyOperation: String +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +"""A connection to a list of `ApplicationMilestoneExcelData` values.""" +type ApplicationMilestoneExcelDataConnection { + """A list of `ApplicationMilestoneExcelData` objects.""" + nodes: [ApplicationMilestoneExcelData]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + A list of edges which contains the `ApplicationMilestoneExcelData` and cursor to aid in pagination. + """ + edges: [ApplicationMilestoneExcelDataEdge!]! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + The count of *all* `ApplicationMilestoneExcelData` you could get from the connection. + """ + totalCount: Int! +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection! +"""Table containing the milestone excel data for the given application""" +type ApplicationMilestoneExcelData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataFormDataStatusTypeIdAndFormSchemaId( - """Only read the first `n` values of the set.""" - first: Int + """Unique ID for the milestone excel data""" + rowId: Int! - """Only read the last `n` values of the set.""" - last: Int + """ID of the application this data belongs to""" + applicationId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """The data imported from the excel filled by the respondent""" + jsonData: JSON! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created by user id""" + createdBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """created at timestamp""" + createdAt: Datetime! - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """updated by user id""" + updatedBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormCondition + """updated at timestamp""" + updatedAt: Datetime! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormFilter - ): FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection! -} + """archived by user id""" + archivedBy: Int -"""A connection to a list of `FormData` values.""" -type FormDataConnection { - """A list of `FormData` objects.""" - nodes: [FormData]! + """archived at timestamp""" + archivedAt: Datetime """ - A list of edges which contains the `FormData` and cursor to aid in pagination. + Reads a single `Application` that is related to this `ApplicationMilestoneExcelData`. """ - edges: [FormDataEdge!]! + applicationByApplicationId: Application - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + """ + ccbcUserByCreatedBy: CcbcUser - """The count of *all* `FormData` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""A `FormData` edge in the connection.""" -type FormDataEdge { +"""A `ApplicationMilestoneExcelData` edge in the connection.""" +type ApplicationMilestoneExcelDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormData` at the end of the edge.""" - node: FormData + """The `ApplicationMilestoneExcelData` at the end of the edge.""" + node: ApplicationMilestoneExcelData } -"""Methods to use when ordering `FormData`.""" -enum FormDataOrderBy { +"""Methods to use when ordering `ApplicationMilestoneExcelData`.""" +enum ApplicationMilestoneExcelDataOrderBy { NATURAL ID_ASC ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - LAST_EDITED_PAGE_ASC - LAST_EDITED_PAGE_DESC - FORM_DATA_STATUS_TYPE_ID_ASC - FORM_DATA_STATUS_TYPE_ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -30210,31 +31540,24 @@ enum FormDataOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC - FORM_SCHEMA_ID_ASC - FORM_SCHEMA_ID_DESC - REASON_FOR_CHANGE_ASC - REASON_FOR_CHANGE_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `FormData` object types. All fields are tested -for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationMilestoneExcelData` object types. +All fields are tested for equality and combined with a logical ‘and.’ """ -input FormDataCondition { +input ApplicationMilestoneExcelDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON - """Checks for equality with the object’s `lastEditedPage` field.""" - lastEditedPage: String - - """Checks for equality with the object’s `formDataStatusTypeId` field.""" - formDataStatusTypeId: String - """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -30252,43 +31575,91 @@ input FormDataCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime - - """Checks for equality with the object’s `formSchemaId` field.""" - formSchemaId: Int - - """Checks for equality with the object’s `reasonForChange` field.""" - reasonForChange: String } -""" -A connection to a list of `CcbcUser` values, with data from `FormData`. -""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `ApplicationSowData` values.""" +type ApplicationSowDataConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData` and cursor to aid in pagination. """ - edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationSowDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""Table containing the SoW data for the given application""" +type ApplicationSowData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Unique ID for the SoW""" + rowId: Int! - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( + """ID of the application this SoW belongs to""" + applicationId: Int + + """ + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fapplication_sow_data.json) + """ + jsonData: JSON! + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """The amendment number""" + amendmentNumber: Int + + """Column identifying if the record is an amendment""" + isAmendment: Boolean + + """ + Reads a single `Application` that is related to this `ApplicationSowData`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + """ + ccbcUserByArchivedBy: CcbcUser + + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -30307,50 +31678,22 @@ type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `FormData`. -""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. - """ - edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: SowTab1Filter + ): SowTab1SConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -30369,50 +31712,22 @@ type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `FormData`. -""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. - """ - edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: SowTab2Filter + ): SowTab2SConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -30431,65 +31746,22 @@ type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! -} - -"""A connection to a list of `Form` values, with data from `FormData`.""" -type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection { - """A list of `Form` objects.""" - nodes: [Form]! - - """ - A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. - """ - edges: [FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Form` you could get from the connection.""" - totalCount: Int! -} - -"""Table to hold the json_schema for forms""" -type Form implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Primary key on form""" - rowId: Int! - - """The end url for the form data""" - slug: String - - """The JSON schema for the respective form""" - jsonSchema: JSON! - - """Description of the form""" - description: String - - """The type of form being stored""" - formType: String - - """Reads a single `FormType` that is related to this `Form`.""" - formTypeByFormType: FormType + filter: SowTab7Filter + ): SowTab7SConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -30508,22 +31780,22 @@ type Form implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: SowTab8Filter + ): SowTab8SConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab1SowIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -30542,22 +31814,22 @@ type Form implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection! + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormSchemaIdAndCreatedBy( + ccbcUsersBySowTab1SowIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -30588,10 +31860,10 @@ type Form implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection! + ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormSchemaIdAndUpdatedBy( + ccbcUsersBySowTab1SowIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -30622,10 +31894,10 @@ type Form implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection! + ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormSchemaIdAndArchivedBy( + ccbcUsersBySowTab2SowIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -30656,24 +31928,10 @@ type Form implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection! -} - -"""Table containing the different types of forms used in the application""" -type FormType implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Primary key and unique identifier of the type of form""" - name: String! - - """Description of the type of form""" - description: String + ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormType( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab2SowIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -30692,117 +31950,56 @@ type FormType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormFilter - ): FormsConnection! -} - -"""A connection to a list of `Form` values.""" -type FormsConnection { - """A list of `Form` objects.""" - nodes: [Form]! - - """ - A list of edges which contains the `Form` and cursor to aid in pagination. - """ - edges: [FormsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Form` you could get from the connection.""" - totalCount: Int! -} - -"""A `Form` edge in the connection.""" -type FormsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Form` at the end of the edge.""" - node: Form -} - -"""Methods to use when ordering `Form`.""" -enum FormsOrderBy { - NATURAL - ID_ASC - ID_DESC - SLUG_ASC - SLUG_DESC - JSON_SCHEMA_ASC - JSON_SCHEMA_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - FORM_TYPE_ASC - FORM_TYPE_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `Form` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input FormCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `slug` field.""" - slug: String - - """Checks for equality with the object’s `jsonSchema` field.""" - jsonSchema: JSON + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection! - """Checks for equality with the object’s `description` field.""" - description: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab2SowIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `formType` field.""" - formType: String -} + """Only read the last `n` values of the set.""" + last: Int -""" -A connection to a list of `FormDataStatusType` values, with data from `FormData`. -""" -type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. - """ - edges: [FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge!]! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - The count of *all* `FormDataStatusType` you could get from the connection. - """ - totalCount: Int! -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A `FormDataStatusType` edge in the connection, with data from `FormData`. -""" -type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7SowIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -30821,73 +32018,56 @@ type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! -} - -"""Methods to use when ordering `FormDataStatusType`.""" -enum FormDataStatusTypesOrderBy { - NATURAL - NAME_ASC - NAME_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection! -""" -A condition to be used against `FormDataStatusType` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input FormDataStatusTypeCondition { - """Checks for equality with the object’s `name` field.""" - name: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7SowIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `description` field.""" - description: String -} + """Only read the last `n` values of the set.""" + last: Int -""" -A connection to a list of `CcbcUser` values, with data from `FormData`. -""" -type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. - """ - edges: [FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge!]! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7SowIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -30906,50 +32086,22 @@ type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `FormData`. -""" -type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. - """ - edges: [FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8SowIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -30968,50 +32120,22 @@ type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `FormData`. -""" -type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. - """ - edges: [FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8SowIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -31030,31 +32154,22 @@ type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! -} - -"""A `Form` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Form` at the end of the edge.""" - node: Form + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8SowIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -31073,117 +32188,50 @@ type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! -} - -"""Methods to use when ordering `ApplicationFormData`.""" -enum ApplicationFormDataOrderBy { - NATURAL - FORM_DATA_ID_ASC - FORM_DATA_ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationFormData` object types. All fields -are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationFormDataCondition { - """Checks for equality with the object’s `formDataId` field.""" - formDataId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int -} - -""" -A connection to a list of `Application` values, with data from `ApplicationFormData`. -""" -type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! - - """ - A list of edges which contains the `Application`, info from the `ApplicationFormData`, and the cursor to aid in pagination. - """ - edges: [FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} - -""" -A `Application` edge in the connection, with data from `ApplicationFormData`. -""" -type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Application` at the end of the edge.""" - node: Application -} - -"""A `ApplicationFormData` edge in the connection.""" -type ApplicationFormDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ApplicationFormData` at the end of the edge.""" - node: ApplicationFormData + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection! } -"""A connection to a list of `ApplicationAnalystLead` values.""" -type ApplicationAnalystLeadsConnection { - """A list of `ApplicationAnalystLead` objects.""" - nodes: [ApplicationAnalystLead]! +"""A connection to a list of `SowTab1` values.""" +type SowTab1SConnection { + """A list of `SowTab1` objects.""" + nodes: [SowTab1]! """ - A list of edges which contains the `ApplicationAnalystLead` and cursor to aid in pagination. + A list of edges which contains the `SowTab1` and cursor to aid in pagination. """ - edges: [ApplicationAnalystLeadsEdge!]! + edges: [SowTab1SEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationAnalystLead` you could get from the connection. - """ + """The count of *all* `SowTab1` you could get from the connection.""" totalCount: Int! } -"""Table containing the analyst lead for the given application""" -type ApplicationAnalystLead implements Node { +type SowTab1 implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - - """Unique ID for the application_analyst_lead""" rowId: Int! + sowId: Int - """ID of the application this analyst lead belongs to""" - applicationId: Int - - """ID of the analyst this analyst lead belongs to""" - analystId: Int + """ + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_1.json) + """ + jsonData: JSON! """created by user id""" createdBy: Int @@ -31204,49 +32252,38 @@ type ApplicationAnalystLead implements Node { archivedAt: Datetime """ - Reads a single `Application` that is related to this `ApplicationAnalystLead`. - """ - applicationByApplicationId: Application - - """ - Reads a single `Analyst` that is related to this `ApplicationAnalystLead`. + Reads a single `ApplicationSowData` that is related to this `SowTab1`. """ - analystByAnalystId: Analyst + applicationSowDataBySowId: ApplicationSowData - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab1`.""" ccbcUserByCreatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab1`.""" ccbcUserByUpdatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. - """ + """Reads a single `CcbcUser` that is related to this `SowTab1`.""" ccbcUserByArchivedBy: CcbcUser } -"""A `ApplicationAnalystLead` edge in the connection.""" -type ApplicationAnalystLeadsEdge { +"""A `SowTab1` edge in the connection.""" +type SowTab1SEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationAnalystLead` at the end of the edge.""" - node: ApplicationAnalystLead + """The `SowTab1` at the end of the edge.""" + node: SowTab1 } -"""Methods to use when ordering `ApplicationAnalystLead`.""" -enum ApplicationAnalystLeadsOrderBy { +"""Methods to use when ordering `SowTab1`.""" +enum SowTab1SOrderBy { NATURAL ID_ASC ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - ANALYST_ID_ASC - ANALYST_ID_DESC + SOW_ID_ASC + SOW_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -31264,18 +32301,17 @@ enum ApplicationAnalystLeadsOrderBy { } """ -A condition to be used against `ApplicationAnalystLead` object types. All fields -are tested for equality and combined with a logical ‘and.’ +A condition to be used against `SowTab1` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationAnalystLeadCondition { +input SowTab1Condition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Checks for equality with the object’s `sowId` field.""" + sowId: Int - """Checks for equality with the object’s `analystId` field.""" - analystId: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -31296,68 +32332,41 @@ input ApplicationAnalystLeadCondition { archivedAt: Datetime } -"""A connection to a list of `ApplicationRfiData` values.""" -type ApplicationRfiDataConnection { - """A list of `ApplicationRfiData` objects.""" - nodes: [ApplicationRfiData]! +"""A connection to a list of `SowTab2` values.""" +type SowTab2SConnection { + """A list of `SowTab2` objects.""" + nodes: [SowTab2]! """ - A list of edges which contains the `ApplicationRfiData` and cursor to aid in pagination. + A list of edges which contains the `SowTab2` and cursor to aid in pagination. """ - edges: [ApplicationRfiDataEdge!]! + edges: [SowTab2SEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationRfiData` you could get from the connection. - """ + """The count of *all* `SowTab2` you could get from the connection.""" totalCount: Int! } -"""Table to pair an application to RFI data""" -type ApplicationRfiData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """The foreign key of a form""" - rfiDataId: Int! - - """The foreign key of an application""" - applicationId: Int! - - """Reads a single `RfiData` that is related to this `ApplicationRfiData`.""" - rfiDataByRfiDataId: RfiData - - """ - Reads a single `Application` that is related to this `ApplicationRfiData`. - """ - applicationByApplicationId: Application -} - -"""Table to hold RFI form data""" -type RfiData implements Node { +"""Table containing the detailed budget data for the given SoW""" +type SowTab2 implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The unique id of the form data""" + """Unique ID for the SoW detailed budget record""" rowId: Int! - """Reference number assigned to the RFI""" - rfiNumber: String + """ID of the SoW""" + sowId: Int """ - The json form data of the RFI information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Frfi_data.json) + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_2.json) """ jsonData: JSON! - """Column referencing the form data status type, defaults to draft""" - rfiDataStatusTypeId: String - """created by user id""" createdBy: Int @@ -31376,300 +32385,302 @@ type RfiData implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `RfiDataStatusType` that is related to this `RfiData`.""" - rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusType + """ + Reads a single `ApplicationSowData` that is related to this `SowTab2`. + """ + applicationSowDataBySowId: ApplicationSowData - """Reads a single `CcbcUser` that is related to this `RfiData`.""" + """Reads a single `CcbcUser` that is related to this `SowTab2`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `RfiData`.""" + """Reads a single `CcbcUser` that is related to this `SowTab2`.""" ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `RfiData`.""" + """Reads a single `CcbcUser` that is related to this `SowTab2`.""" ccbcUserByArchivedBy: CcbcUser +} - """Reads and enables pagination through a set of `ApplicationRfiData`.""" - applicationRfiDataByRfiDataId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationRfiData`.""" - orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationRfiDataCondition +"""A `SowTab2` edge in the connection.""" +type SowTab2SEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationRfiDataFilter - ): ApplicationRfiDataConnection! + """The `SowTab2` at the end of the edge.""" + node: SowTab2 +} - """Computed column to return all attachement rows for an rfi_data row""" - attachments( - """Only read the first `n` values of the set.""" - first: Int +"""Methods to use when ordering `SowTab2`.""" +enum SowTab2SOrderBy { + NATURAL + ID_ASC + ID_DESC + SOW_ID_ASC + SOW_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `SowTab2` object types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input SowTab2Condition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `sowId` field.""" + sowId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationRfiDataRfiDataIdAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +"""A connection to a list of `SowTab7` values.""" +type SowTab7SConnection { + """A list of `SowTab7` objects.""" + nodes: [SowTab7]! - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """ + A list of edges which contains the `SowTab7` and cursor to aid in pagination. + """ + edges: [SowTab7SEdge!]! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection! + """The count of *all* `SowTab7` you could get from the connection.""" + totalCount: Int! } -"""The statuses applicable to an RFI""" -type RfiDataStatusType implements Node { +type SowTab7 implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! + rowId: Int! + sowId: Int - """The name of the status type""" - name: String! + """ + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_7.json) + """ + jsonData: JSON! - """The description of the status type""" - description: String + """created by user id""" + createdBy: Int - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByRfiDataStatusTypeId( - """Only read the first `n` values of the set.""" - first: Int + """created at timestamp""" + createdAt: Datetime! - """Only read the last `n` values of the set.""" - last: Int + """updated by user id""" + updatedBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """archived at timestamp""" + archivedAt: Datetime - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Reads a single `ApplicationSowData` that is related to this `SowTab7`. + """ + applicationSowDataBySowId: ApplicationSowData - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """Reads a single `CcbcUser` that is related to this `SowTab7`.""" + ccbcUserByCreatedBy: CcbcUser - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: RfiDataCondition + """Reads a single `CcbcUser` that is related to this `SowTab7`.""" + ccbcUserByUpdatedBy: CcbcUser - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: RfiDataFilter - ): RfiDataConnection! + """Reads a single `CcbcUser` that is related to this `SowTab7`.""" + ccbcUserByArchivedBy: CcbcUser +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +"""A `SowTab7` edge in the connection.""" +type SowTab7SEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Only read the last `n` values of the set.""" - last: Int + """The `SowTab7` at the end of the edge.""" + node: SowTab7 +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +"""Methods to use when ordering `SowTab7`.""" +enum SowTab7SOrderBy { + NATURAL + ID_ASC + ID_DESC + SOW_ID_ASC + SOW_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A condition to be used against `SowTab7` object types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input SowTab7Condition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `sowId` field.""" + sowId: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection! + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +"""A connection to a list of `SowTab8` values.""" +type SowTab8SConnection { + """A list of `SowTab8` objects.""" + nodes: [SowTab8]! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + A list of edges which contains the `SowTab8` and cursor to aid in pagination. + """ + edges: [SowTab8SEdge!]! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection! + """The count of *all* `SowTab8` you could get from the connection.""" + totalCount: Int! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +"""Table containing the detailed budget data for the given SoW""" +type SowTab8 implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Only read the last `n` values of the set.""" - last: Int + """Unique ID for the SoW Tab 8""" + rowId: Int! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ID of the SoW""" + sowId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_8.json) + """ + jsonData: JSON! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """created by user id""" + createdBy: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """created at timestamp""" + createdAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """updated by user id""" + updatedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection! -} + """updated at timestamp""" + updatedAt: Datetime! -"""A connection to a list of `RfiData` values.""" -type RfiDataConnection { - """A list of `RfiData` objects.""" - nodes: [RfiData]! + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime """ - A list of edges which contains the `RfiData` and cursor to aid in pagination. + Reads a single `ApplicationSowData` that is related to this `SowTab8`. """ - edges: [RfiDataEdge!]! + applicationSowDataBySowId: ApplicationSowData - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + ccbcUserByCreatedBy: CcbcUser - """The count of *all* `RfiData` you could get from the connection.""" - totalCount: Int! + """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + ccbcUserByArchivedBy: CcbcUser } -"""A `RfiData` edge in the connection.""" -type RfiDataEdge { +"""A `SowTab8` edge in the connection.""" +type SowTab8SEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `RfiData` at the end of the edge.""" - node: RfiData + """The `SowTab8` at the end of the edge.""" + node: SowTab8 } -"""Methods to use when ordering `RfiData`.""" -enum RfiDataOrderBy { +"""Methods to use when ordering `SowTab8`.""" +enum SowTab8SOrderBy { NATURAL ID_ASC ID_DESC - RFI_NUMBER_ASC - RFI_NUMBER_DESC + SOW_ID_ASC + SOW_ID_DESC JSON_DATA_ASC JSON_DATA_DESC - RFI_DATA_STATUS_TYPE_ID_ASC - RFI_DATA_STATUS_TYPE_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -31687,21 +32698,18 @@ enum RfiDataOrderBy { } """ -A condition to be used against `RfiData` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `SowTab8` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input RfiDataCondition { +input SowTab8Condition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `rfiNumber` field.""" - rfiNumber: String + """Checks for equality with the object’s `sowId` field.""" + sowId: Int """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON - """Checks for equality with the object’s `rfiDataStatusTypeId` field.""" - rfiDataStatusTypeId: String - """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -31721,15 +32729,15 @@ input RfiDataCondition { archivedAt: Datetime } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -31738,16 +32746,16 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToMan totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -31766,30 +32774,30 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -31798,16 +32806,16 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToMan totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -31826,30 +32834,30 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -31858,16 +32866,16 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToMa totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -31886,167 +32894,48 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! -} - -"""Methods to use when ordering `ApplicationRfiData`.""" -enum ApplicationRfiDataOrderBy { - NATURAL - RFI_DATA_ID_ASC - RFI_DATA_ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationRfiData` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input ApplicationRfiDataCondition { - """Checks for equality with the object’s `rfiDataId` field.""" - rfiDataId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationRfiData`. -""" -type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationRfiData`. -""" -type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Application` at the end of the edge.""" - node: Application -} - -"""A `ApplicationRfiData` edge in the connection.""" -type ApplicationRfiDataEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationRfiData` at the end of the edge.""" - node: ApplicationRfiData -} - -"""A connection to a list of `AssessmentData` values.""" -type AssessmentDataConnection { - """A list of `AssessmentData` objects.""" - nodes: [AssessmentData]! - - """ - A list of edges which contains the `AssessmentData` and cursor to aid in pagination. - """ - edges: [AssessmentDataEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `AssessmentData` you could get from the connection.""" - totalCount: Int! -} - -type AssessmentData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - rowId: Int! - applicationId: Int! - - """ - The json form data of the assessment form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fassessment_data.json) - """ - jsonData: JSON! - assessmentDataType: String - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Reads a single `Application` that is related to this `AssessmentData`.""" - applicationByApplicationId: Application - - """ - Reads a single `AssessmentType` that is related to this `AssessmentData`. - """ - assessmentTypeByAssessmentDataType: AssessmentType - - """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" - ccbcUserByArchivedBy: CcbcUser -} - -""" -Table containing the different assessment types that can be assigned to an assessment -""" -type AssessmentType implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Name of and primary key of the type of an assessment""" - name: String! - - """Description of the assessment type""" - description: String + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -32065,56 +32954,48 @@ type AssessmentType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataAssessmentDataTypeAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + filter: SowTab2Filter + ): SowTab2SConnection! +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge!]! - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection! +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataAssessmentDataTypeAndCreatedBy( + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -32133,22 +33014,48 @@ type AssessmentType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection! + filter: SowTab2Filter + ): SowTab2SConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedBy( +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -32167,22 +33074,48 @@ type AssessmentType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection! + filter: SowTab2Filter + ): SowTab2SConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataAssessmentDataTypeAndArchivedBy( +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -32201,115 +33134,48 @@ type AssessmentType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection! -} - -"""Methods to use when ordering `AssessmentData`.""" -enum AssessmentDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - ASSESSMENT_DATA_TYPE_ASC - ASSESSMENT_DATA_TYPE_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `AssessmentData` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input AssessmentDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `assessmentDataType` field.""" - assessmentDataType: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `Application` values, with data from `AssessmentData`. -""" -type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `AssessmentData`. -""" -type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -32328,32 +33194,30 @@ type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationI """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -32362,16 +33226,16 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyTo totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -32390,32 +33254,30 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -32424,16 +33286,16 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyTo totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -32452,32 +33314,30 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -32486,16 +33346,16 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyT totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -32514,122 +33374,99 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! -} - -"""A `AssessmentData` edge in the connection.""" -type AssessmentDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `AssessmentData` at the end of the edge.""" - node: AssessmentData + filter: SowTab8Filter + ): SowTab8SConnection! } -"""A connection to a list of `ApplicationPackage` values.""" -type ApplicationPackagesConnection { - """A list of `ApplicationPackage` objects.""" - nodes: [ApplicationPackage]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationPackage` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [ApplicationPackagesEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationPackage` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table containing the package the application is assigned to""" -type ApplicationPackage implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the application_package""" - rowId: Int! - - """The application_id of the application this record is associated with""" - applicationId: Int - - """The package number the application is assigned to""" - package: Int - - """created by user id""" - createdBy: Int +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """created at timestamp""" - createdAt: Datetime! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """updated by user id""" - updatedBy: Int + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """updated at timestamp""" - updatedAt: Datetime! + """Only read the last `n` values of the set.""" + last: Int - """archived by user id""" - archivedBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """archived at timestamp""" - archivedAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Reads a single `Application` that is related to this `ApplicationPackage`. - """ - applicationByApplicationId: Application + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ - ccbcUserByCreatedBy: CcbcUser + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ - ccbcUserByUpdatedBy: CcbcUser + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: SowTab8Condition - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ - ccbcUserByArchivedBy: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab8Filter + ): SowTab8SConnection! } -"""A `ApplicationPackage` edge in the connection.""" -type ApplicationPackagesEdge { +"""A `ApplicationSowData` edge in the connection.""" +type ApplicationSowDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationPackage` at the end of the edge.""" - node: ApplicationPackage + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData } -"""Methods to use when ordering `ApplicationPackage`.""" -enum ApplicationPackagesOrderBy { +"""Methods to use when ordering `ApplicationSowData`.""" +enum ApplicationSowDataOrderBy { NATURAL ID_ASC ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - PACKAGE_ASC - PACKAGE_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -32642,23 +33479,27 @@ enum ApplicationPackagesOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC + AMENDMENT_NUMBER_ASC + AMENDMENT_NUMBER_DESC + IS_AMENDMENT_ASC + IS_AMENDMENT_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationPackage` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationSowData` object types. All fields +are tested for equality and combined with a logical ‘and.’ """ -input ApplicationPackageCondition { +input ApplicationSowDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `package` field.""" - package: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -32677,29 +33518,35 @@ input ApplicationPackageCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime + + """Checks for equality with the object’s `amendmentNumber` field.""" + amendmentNumber: Int + + """Checks for equality with the object’s `isAmendment` field.""" + isAmendment: Boolean } -"""A connection to a list of `ConditionalApprovalData` values.""" -type ConditionalApprovalDataConnection { - """A list of `ConditionalApprovalData` objects.""" - nodes: [ConditionalApprovalData]! +"""A connection to a list of `ChangeRequestData` values.""" +type ChangeRequestDataConnection { + """A list of `ChangeRequestData` objects.""" + nodes: [ChangeRequestData]! """ - A list of edges which contains the `ConditionalApprovalData` and cursor to aid in pagination. + A list of edges which contains the `ChangeRequestData` and cursor to aid in pagination. """ - edges: [ConditionalApprovalDataEdge!]! + edges: [ChangeRequestDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ConditionalApprovalData` you could get from the connection. + The count of *all* `ChangeRequestData` you could get from the connection. """ totalCount: Int! } -"""Table to store conditional approval data""" -type ConditionalApprovalData implements Node { +"""Table to store change request data""" +type ChangeRequestData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ @@ -32711,9 +33558,7 @@ type ConditionalApprovalData implements Node { """The foreign key of an application""" applicationId: Int - """ - The json form data of the conditional approval form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fconditional_approval_data.json) - """ + """The json form data of the change request form""" jsonData: JSON! """created by user id""" @@ -32733,39 +33578,40 @@ type ConditionalApprovalData implements Node { """archived at timestamp""" archivedAt: Datetime + amendmentNumber: Int """ - Reads a single `Application` that is related to this `ConditionalApprovalData`. + Reads a single `Application` that is related to this `ChangeRequestData`. """ applicationByApplicationId: Application """ - Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + Reads a single `CcbcUser` that is related to this `ChangeRequestData`. """ ccbcUserByCreatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + Reads a single `CcbcUser` that is related to this `ChangeRequestData`. """ ccbcUserByUpdatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + Reads a single `CcbcUser` that is related to this `ChangeRequestData`. """ ccbcUserByArchivedBy: CcbcUser } -"""A `ConditionalApprovalData` edge in the connection.""" -type ConditionalApprovalDataEdge { +"""A `ChangeRequestData` edge in the connection.""" +type ChangeRequestDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ConditionalApprovalData` at the end of the edge.""" - node: ConditionalApprovalData + """The `ChangeRequestData` at the end of the edge.""" + node: ChangeRequestData } -"""Methods to use when ordering `ConditionalApprovalData`.""" -enum ConditionalApprovalDataOrderBy { +"""Methods to use when ordering `ChangeRequestData`.""" +enum ChangeRequestDataOrderBy { NATURAL ID_ASC ID_DESC @@ -32785,15 +33631,17 @@ enum ConditionalApprovalDataOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC + AMENDMENT_NUMBER_ASC + AMENDMENT_NUMBER_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ConditionalApprovalData` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ChangeRequestData` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input ConditionalApprovalDataCondition { +input ChangeRequestDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int @@ -32820,41 +33668,50 @@ input ConditionalApprovalDataCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime + + """Checks for equality with the object’s `amendmentNumber` field.""" + amendmentNumber: Int } -"""A connection to a list of `ApplicationGisData` values.""" -type ApplicationGisDataConnection { - """A list of `ApplicationGisData` objects.""" - nodes: [ApplicationGisData]! +"""A connection to a list of `Notification` values.""" +type NotificationsConnection { + """A list of `Notification` objects.""" + nodes: [Notification]! """ - A list of edges which contains the `ApplicationGisData` and cursor to aid in pagination. + A list of edges which contains the `Notification` and cursor to aid in pagination. """ - edges: [ApplicationGisDataEdge!]! + edges: [NotificationsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationGisData` you could get from the connection. - """ + """The count of *all* `Notification` you could get from the connection.""" totalCount: Int! } -type ApplicationGisData implements Node { +"""Table containing list of application notifications""" +type Notification implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! + + """Unique ID for each notification""" rowId: Int! - batchId: Int + + """Type of the notification""" + notificationType: String + + """ID of the application this notification belongs to""" applicationId: Int - """ - The data imported from the GIS data Excel file. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fapplication_gis_data.json) - """ + """Additional data for the notification""" jsonData: JSON! + """Column referencing the email record""" + emailRecordId: Int + """created by user id""" createdBy: Int @@ -32873,43 +33730,48 @@ type ApplicationGisData implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `GisData` that is related to this `ApplicationGisData`.""" - gisDataByBatchId: GisData - - """ - Reads a single `Application` that is related to this `ApplicationGisData`. - """ + """Reads a single `Application` that is related to this `Notification`.""" applicationByApplicationId: Application - """ - Reads a single `CcbcUser` that is related to this `ApplicationGisData`. - """ + """Reads a single `EmailRecord` that is related to this `Notification`.""" + emailRecordByEmailRecordId: EmailRecord + + """Reads a single `CcbcUser` that is related to this `Notification`.""" ccbcUserByCreatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationGisData`. - """ + """Reads a single `CcbcUser` that is related to this `Notification`.""" ccbcUserByUpdatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationGisData`. - """ + """Reads a single `CcbcUser` that is related to this `Notification`.""" ccbcUserByArchivedBy: CcbcUser } -"""Table containing the uploaded GIS data in JSON format""" -type GisData implements Node { +"""Table containing list of application email_records""" +type EmailRecord implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Primary key and unique identifier""" + """Unique ID for each email sent""" rowId: Int! - """ - The data imported from the GIS data Excel file. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fgis_data.json) - """ + """Email Address(es) of the recipients""" + toEmail: String + + """Email Address(es) of the CC recipients""" + ccEmail: String + + """Subject of the email""" + subject: String + + """Body of the email""" + body: String + + """Message ID of the email returned by the email server""" + messageId: String + + """Additional data for the email""" jsonData: JSON! """created by user id""" @@ -32930,17 +33792,17 @@ type GisData implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `CcbcUser` that is related to this `GisData`.""" + """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `GisData`.""" + """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `GisData`.""" + """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -32959,22 +33821,22 @@ type GisData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: NotificationFilter + ): NotificationsConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataBatchIdAndApplicationId( + applicationsByNotificationEmailRecordIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -33005,10 +33867,10 @@ type GisData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection! + ): EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataBatchIdAndCreatedBy( + ccbcUsersByNotificationEmailRecordIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33039,10 +33901,10 @@ type GisData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection! + ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataBatchIdAndUpdatedBy( + ccbcUsersByNotificationEmailRecordIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33073,10 +33935,10 @@ type GisData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection! + ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataBatchIdAndArchivedBy( + ccbcUsersByNotificationEmailRecordIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -33107,20 +33969,22 @@ type GisData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection! + ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `ApplicationGisData`.""" -enum ApplicationGisDataOrderBy { +"""Methods to use when ordering `Notification`.""" +enum NotificationsOrderBy { NATURAL ID_ASC ID_DESC - BATCH_ID_ASC - BATCH_ID_DESC + NOTIFICATION_TYPE_ASC + NOTIFICATION_TYPE_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC JSON_DATA_ASC JSON_DATA_DESC + EMAIL_RECORD_ID_ASC + EMAIL_RECORD_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -33138,15 +34002,15 @@ enum ApplicationGisDataOrderBy { } """ -A condition to be used against `ApplicationGisData` object types. All fields are +A condition to be used against `Notification` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationGisDataCondition { +input NotificationCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `batchId` field.""" - batchId: Int + """Checks for equality with the object’s `notificationType` field.""" + notificationType: String """Checks for equality with the object’s `applicationId` field.""" applicationId: Int @@ -33154,6 +34018,9 @@ input ApplicationGisDataCondition { """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON + """Checks for equality with the object’s `emailRecordId` field.""" + emailRecordId: Int + """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -33174,16 +34041,16 @@ input ApplicationGisDataCondition { } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `Notification`. """ -type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection { +type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge!]! + edges: [EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -33192,18 +34059,16 @@ type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyCon totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -33222,32 +34087,32 @@ type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection { +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge!]! + edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -33256,18 +34121,16 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33286,32 +34149,32 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection { +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge!]! + edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -33320,18 +34183,16 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33350,32 +34211,32 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection { +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge!]! + edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -33384,18 +34245,16 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnectio totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -33414,61 +34273,64 @@ type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A `ApplicationGisData` edge in the connection.""" -type ApplicationGisDataEdge { +"""A `Notification` edge in the connection.""" +type NotificationsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationGisData` at the end of the edge.""" - node: ApplicationGisData + """The `Notification` at the end of the edge.""" + node: Notification } -"""A connection to a list of `ApplicationAnnouncement` values.""" -type ApplicationAnnouncementsConnection { - """A list of `ApplicationAnnouncement` objects.""" - nodes: [ApplicationAnnouncement]! +"""A connection to a list of `ApplicationPackage` values.""" +type ApplicationPackagesConnection { + """A list of `ApplicationPackage` objects.""" + nodes: [ApplicationPackage]! """ - A list of edges which contains the `ApplicationAnnouncement` and cursor to aid in pagination. + A list of edges which contains the `ApplicationPackage` and cursor to aid in pagination. """ - edges: [ApplicationAnnouncementsEdge!]! + edges: [ApplicationPackagesEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationAnnouncement` you could get from the connection. + The count of *all* `ApplicationPackage` you could get from the connection. """ totalCount: Int! } -"""Table to pair an application to RFI data""" -type ApplicationAnnouncement implements Node { +"""Table containing the package the application is assigned to""" +type ApplicationPackage implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The foreign key of a form""" - announcementId: Int! + """Unique ID for the application_package""" + rowId: Int! - """The foreign key of an application""" - applicationId: Int! + """The application_id of the application this record is associated with""" + applicationId: Int + + """The package number the application is assigned to""" + package: Int """created by user id""" createdBy: Int @@ -33488,265 +34350,186 @@ type ApplicationAnnouncement implements Node { """archived at timestamp""" archivedAt: Datetime - """Flag to identify either announcement is primary or secondary""" - isPrimary: Boolean - """ - Column describing the operation (created, updated, deleted) for context on the history page - """ - historyOperation: String - - """ - Reads a single `Announcement` that is related to this `ApplicationAnnouncement`. - """ - announcementByAnnouncementId: Announcement - - """ - Reads a single `Application` that is related to this `ApplicationAnnouncement`. + Reads a single `Application` that is related to this `ApplicationPackage`. """ applicationByApplicationId: Application """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + Reads a single `CcbcUser` that is related to this `ApplicationPackage`. """ ccbcUserByCreatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + Reads a single `CcbcUser` that is related to this `ApplicationPackage`. """ ccbcUserByUpdatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + Reads a single `CcbcUser` that is related to this `ApplicationPackage`. """ ccbcUserByArchivedBy: CcbcUser } -"""Table to hold the announcement data""" -type Announcement implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! +"""A `ApplicationPackage` edge in the connection.""" +type ApplicationPackagesEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """The unique id of the announcement data""" - rowId: Int! + """The `ApplicationPackage` at the end of the edge.""" + node: ApplicationPackage +} - """List of CCBC number of the projects included in announcement""" - ccbcNumbers: String +"""Methods to use when ordering `ApplicationPackage`.""" +enum ApplicationPackagesOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + PACKAGE_ASC + PACKAGE_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """ - The json form data of the announcement form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fannouncement.json) - """ - jsonData: JSON! +""" +A condition to be used against `ApplicationPackage` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input ApplicationPackageCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """created by user id""" + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `package` field.""" + package: Int + + """Checks for equality with the object’s `createdBy` field.""" createdBy: Int - """created at timestamp""" - createdAt: Datetime! + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """updated by user id""" + """Checks for equality with the object’s `updatedBy` field.""" updatedBy: Int - """updated at timestamp""" - updatedAt: Datetime! + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """archived by user id""" + """Checks for equality with the object’s `archivedBy` field.""" archivedBy: Int - """archived at timestamp""" + """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime +} - """Reads a single `CcbcUser` that is related to this `Announcement`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `Announcement`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `Announcement`.""" - ccbcUserByArchivedBy: CcbcUser +"""A connection to a list of `ApplicationProjectType` values.""" +type ApplicationProjectTypesConnection { + """A list of `ApplicationProjectType` objects.""" + nodes: [ApplicationProjectType]! """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + A list of edges which contains the `ApplicationProjectType` and cursor to aid in pagination. """ - applicationAnnouncementsByAnnouncementId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnnouncementCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementAnnouncementIdAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + edges: [ApplicationProjectTypesEdge!]! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection! + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ + The count of *all* `ApplicationProjectType` you could get from the connection. + """ + totalCount: Int! +} - """Only read the last `n` values of the set.""" - last: Int +"""Table containing the project type of the application""" +type ApplicationProjectType implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Unique ID for the application_project_type""" + rowId: Int! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ID of the application this application_project_type belongs to""" + applicationId: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Column containing the project type of the application""" + projectType: String - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """created by user id""" + createdBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """created at timestamp""" + createdAt: Datetime! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection! + """updated by user id""" + updatedBy: Int - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """updated at timestamp""" + updatedAt: Datetime! - """Only read the last `n` values of the set.""" - last: Int + """archived by user id""" + archivedBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """archived at timestamp""" + archivedAt: Datetime - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Reads a single `Application` that is related to this `ApplicationProjectType`. + """ + applicationByApplicationId: Application - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. + """ + ccbcUserByCreatedBy: CcbcUser - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. + """ + ccbcUserByUpdatedBy: CcbcUser - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. + """ + ccbcUserByArchivedBy: CcbcUser +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection! +"""A `ApplicationProjectType` edge in the connection.""" +type ApplicationProjectTypesEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationProjectType` at the end of the edge.""" + node: ApplicationProjectType } -"""Methods to use when ordering `ApplicationAnnouncement`.""" -enum ApplicationAnnouncementsOrderBy { +"""Methods to use when ordering `ApplicationProjectType`.""" +enum ApplicationProjectTypesOrderBy { NATURAL - ANNOUNCEMENT_ID_ASC - ANNOUNCEMENT_ID_DESC + ID_ASC + ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC + PROJECT_TYPE_ASC + PROJECT_TYPE_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -33759,25 +34542,24 @@ enum ApplicationAnnouncementsOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC - IS_PRIMARY_ASC - IS_PRIMARY_DESC - HISTORY_OPERATION_ASC - HISTORY_OPERATION_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationAnnouncement` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationProjectType` object types. All fields +are tested for equality and combined with a logical ‘and.’ """ -input ApplicationAnnouncementCondition { - """Checks for equality with the object’s `announcementId` field.""" - announcementId: Int +input ApplicationProjectTypeCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int + """Checks for equality with the object’s `projectType` field.""" + projectType: String + """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -33795,42 +34577,61 @@ input ApplicationAnnouncementCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime - - """Checks for equality with the object’s `isPrimary` field.""" - isPrimary: Boolean - - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String } -""" -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. -""" -type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `Attachment` values.""" +type AttachmentsConnection { + """A list of `Attachment` objects.""" + nodes: [Attachment]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Attachment` and cursor to aid in pagination. """ - edges: [AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge!]! + edges: [AttachmentsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Attachment` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""Table containing information about uploaded attachments""" +type Attachment implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `Application` at the end of the edge.""" - node: Application + """Unique ID for the attachment""" + rowId: Int! + + """ + Universally Unique ID for the attachment, created by the fastapi storage micro-service + """ + file: UUID + + """Description of the attachment""" + description: String + + """Original uploaded file name""" + fileName: String + + """Original uploaded file type""" + fileType: String + + """Original uploaded file size""" + fileSize: String + + """ + The id of the project (ccbc_public.application.id) that the attachment was uploaded to + """ + applicationId: Int! + + """ + The id of the application_status (ccbc_public.application_status.id) that the attachment references + """ + applicationStatusId: Int """created by user id""" createdBy: Int @@ -33850,48 +34651,82 @@ type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicati """archived at timestamp""" archivedAt: Datetime - """Flag to identify either announcement is primary or secondary""" - isPrimary: Boolean + """Reads a single `Application` that is related to this `Attachment`.""" + applicationByApplicationId: Application """ - Column describing the operation (created, updated, deleted) for context on the history page + Reads a single `ApplicationStatus` that is related to this `Attachment`. """ - historyOperation: String -} + applicationStatusByApplicationStatusId: ApplicationStatus -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Reads a single `CcbcUser` that is related to this `Attachment`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Attachment`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Attachment`.""" + ccbcUserByArchivedBy: CcbcUser +} +"""Table containing information about possible application statuses""" +type ApplicationStatus implements Node { """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge!]! + id: ID! - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Unique ID for the application_status""" + rowId: Int! - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """ID of the application this status belongs to""" + applicationId: Int -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """The status of the application""" + status: String - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """Change reason for analyst status change""" + changeReason: String + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads a single `Application` that is related to this `ApplicationStatus`. """ - applicationAnnouncementsByCreatedBy( + applicationByApplicationId: Application + + """ + Reads a single `ApplicationStatusType` that is related to this `ApplicationStatus`. + """ + applicationStatusTypeByStatus: ApplicationStatusType + + """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" + ccbcUserByArchivedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -33910,54 +34745,22 @@ type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. - """ - edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: AttachmentFilter + ): AttachmentsConnection! - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentApplicationStatusIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -33976,54 +34779,22 @@ type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. - """ - edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: ApplicationFilter + ): ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationStatusIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34042,199 +34813,119 @@ type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! -} - -"""A `ApplicationAnnouncement` edge in the connection.""" -type ApplicationAnnouncementsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ApplicationAnnouncement` at the end of the edge.""" - node: ApplicationAnnouncement -} - -"""A connection to a list of `ApplicationGisAssessmentHh` values.""" -type ApplicationGisAssessmentHhsConnection { - """A list of `ApplicationGisAssessmentHh` objects.""" - nodes: [ApplicationGisAssessmentHh]! - - """ - A list of edges which contains the `ApplicationGisAssessmentHh` and cursor to aid in pagination. - """ - edges: [ApplicationGisAssessmentHhsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """ - The count of *all* `ApplicationGisAssessmentHh` you could get from the connection. - """ - totalCount: Int! -} - -"""Table containing data for the gis assessment hh numbers""" -type ApplicationGisAssessmentHh implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Primary key and unique identifier""" - rowId: Int! - - """The application_id of the application this record is associated with""" - applicationId: Int! - - """The number of eligible households""" - eligible: Float - - """The number of eligible indigenous households""" - eligibleIndigenous: Float - - """ - Reads a single `Application` that is related to this `ApplicationGisAssessmentHh`. - """ - applicationByApplicationId: Application -} - -"""A `ApplicationGisAssessmentHh` edge in the connection.""" -type ApplicationGisAssessmentHhsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ApplicationGisAssessmentHh` at the end of the edge.""" - node: ApplicationGisAssessmentHh -} - -"""Methods to use when ordering `ApplicationGisAssessmentHh`.""" -enum ApplicationGisAssessmentHhsOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - ELIGIBLE_ASC - ELIGIBLE_DESC - ELIGIBLE_INDIGENOUS_ASC - ELIGIBLE_INDIGENOUS_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationGisAssessmentHh` object types. All -fields are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationGisAssessmentHhCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `eligible` field.""" - eligible: Float - - """Checks for equality with the object’s `eligibleIndigenous` field.""" - eligibleIndigenous: Float -} + filter: CcbcUserFilter + ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection! -"""A connection to a list of `ApplicationSowData` values.""" -type ApplicationSowDataConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationStatusIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - A list of edges which contains the `ApplicationSowData` and cursor to aid in pagination. - """ - edges: [ApplicationSowDataEdge!]! + """Only read the last `n` values of the set.""" + last: Int - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ - totalCount: Int! -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -"""Table containing the SoW data for the given application""" -type ApplicationSowData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Unique ID for the SoW""" - rowId: Int! + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ID of the application this SoW belongs to""" - applicationId: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fapplication_sow_data.json) - """ - jsonData: JSON! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection! - """created by user id""" - createdBy: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationStatusIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """created at timestamp""" - createdAt: Datetime! + """Only read the last `n` values of the set.""" + last: Int - """updated by user id""" - updatedBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """updated at timestamp""" - updatedAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """archived by user id""" - archivedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """archived at timestamp""" - archivedAt: Datetime + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """The amendment number""" - amendmentNumber: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Column identifying if the record is an amendment""" - isAmendment: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection! +} +""" +Table containing the different statuses that can be assigned to an application +""" +type ApplicationStatusType implements Node { """ - Reads a single `Application` that is related to this `ApplicationSowData`. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - applicationByApplicationId: Application + id: ID! - """ - Reads a single `CcbcUser` that is related to this `ApplicationSowData`. - """ - ccbcUserByCreatedBy: CcbcUser + """Name of and primary key of the status of an application""" + name: String! + + """Description of the status type""" + description: String """ - Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + Boolean column used to differentiate internal/external status by indicating whether the status is visible to the applicant or not. """ - ccbcUserByUpdatedBy: CcbcUser + visibleByApplicant: Boolean + + """The logical order in which the status should be displayed.""" + statusOrder: Int! """ - Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + Boolean column used to differentiate internal/external status by indicating whether the status is visible to the analyst or not. """ - ccbcUserByArchivedBy: CcbcUser + visibleByAnalyst: Boolean - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -34253,22 +34944,22 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationStatusStatusAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -34287,22 +34978,22 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationFilter + ): ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusStatusAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34321,22 +35012,22 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: CcbcUserFilter + ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusStatusAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -34355,22 +35046,22 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: CcbcUserFilter + ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2SowIdAndCreatedBy( + ccbcUsersByApplicationStatusStatusAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34401,10 +35092,131 @@ type ApplicationSowData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection! + ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2SowIdAndUpdatedBy( +"""A connection to a list of `ApplicationStatus` values.""" +type ApplicationStatusesConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! + + """ + A list of edges which contains the `ApplicationStatus` and cursor to aid in pagination. + """ + edges: [ApplicationStatusesEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ + totalCount: Int! +} + +"""A `ApplicationStatus` edge in the connection.""" +type ApplicationStatusesEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus +} + +"""Methods to use when ordering `ApplicationStatus`.""" +enum ApplicationStatusesOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + STATUS_ASC + STATUS_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + CHANGE_REASON_ASC + CHANGE_REASON_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ApplicationStatus` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input ApplicationStatusCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `status` field.""" + status: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `changeReason` field.""" + changeReason: String + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime +} + +""" +A connection to a list of `Application` values, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Application` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -34423,22 +35235,52 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2SowIdAndArchivedBy( +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34457,22 +35299,52 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1SowIdAndCreatedBy( +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -34491,22 +35363,197 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1SowIdAndUpdatedBy( +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! +} + +"""Methods to use when ordering `Attachment`.""" +enum AttachmentsOrderBy { + NATURAL + ID_ASC + ID_DESC + FILE_ASC + FILE_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + FILE_NAME_ASC + FILE_NAME_DESC + FILE_TYPE_ASC + FILE_TYPE_DESC + FILE_SIZE_ASC + FILE_SIZE_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + APPLICATION_STATUS_ID_ASC + APPLICATION_STATUS_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `Attachment` object types. All fields are tested +for equality and combined with a logical ‘and.’ +""" +input AttachmentCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `file` field.""" + file: UUID + + """Checks for equality with the object’s `description` field.""" + description: String + + """Checks for equality with the object’s `fileName` field.""" + fileName: String + + """Checks for equality with the object’s `fileType` field.""" + fileType: String + + """Checks for equality with the object’s `fileSize` field.""" + fileSize: String + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `applicationStatusId` field.""" + applicationStatusId: Int + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +""" +A connection to a list of `Application` values, with data from `Attachment`. +""" +type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +"""A `Application` edge in the connection, with data from `Attachment`.""" +type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -34525,22 +35572,50 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection! + filter: AttachmentFilter + ): AttachmentsConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1SowIdAndArchivedBy( +""" +A connection to a list of `CcbcUser` values, with data from `Attachment`. +""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34559,22 +35634,50 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection! + filter: AttachmentFilter + ): AttachmentsConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7SowIdAndCreatedBy( +""" +A connection to a list of `CcbcUser` values, with data from `Attachment`. +""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34593,22 +35696,50 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection! + filter: AttachmentFilter + ): AttachmentsConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7SowIdAndUpdatedBy( +""" +A connection to a list of `CcbcUser` values, with data from `Attachment`. +""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -34627,22 +35758,309 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection! + filter: AttachmentFilter + ): AttachmentsConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7SowIdAndArchivedBy( +"""A `Attachment` edge in the connection.""" +type AttachmentsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Attachment` at the end of the edge.""" + node: Attachment +} + +"""A connection to a list of `ApplicationAnalystLead` values.""" +type ApplicationAnalystLeadsConnection { + """A list of `ApplicationAnalystLead` objects.""" + nodes: [ApplicationAnalystLead]! + + """ + A list of edges which contains the `ApplicationAnalystLead` and cursor to aid in pagination. + """ + edges: [ApplicationAnalystLeadsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationAnalystLead` you could get from the connection. + """ + totalCount: Int! +} + +"""Table containing the analyst lead for the given application""" +type ApplicationAnalystLead implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Unique ID for the application_analyst_lead""" + rowId: Int! + + """ID of the application this analyst lead belongs to""" + applicationId: Int + + """ID of the analyst this analyst lead belongs to""" + analystId: Int + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """ + Reads a single `Application` that is related to this `ApplicationAnalystLead`. + """ + applicationByApplicationId: Application + + """ + Reads a single `Analyst` that is related to this `ApplicationAnalystLead`. + """ + analystByAnalystId: Analyst + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. + """ + ccbcUserByArchivedBy: CcbcUser +} + +"""A `ApplicationAnalystLead` edge in the connection.""" +type ApplicationAnalystLeadsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationAnalystLead` at the end of the edge.""" + node: ApplicationAnalystLead +} + +"""Methods to use when ordering `ApplicationAnalystLead`.""" +enum ApplicationAnalystLeadsOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + ANALYST_ID_ASC + ANALYST_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ApplicationAnalystLead` object types. All fields +are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationAnalystLeadCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `analystId` field.""" + analystId: Int + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +"""A connection to a list of `ApplicationAnnouncement` values.""" +type ApplicationAnnouncementsConnection { + """A list of `ApplicationAnnouncement` objects.""" + nodes: [ApplicationAnnouncement]! + + """ + A list of edges which contains the `ApplicationAnnouncement` and cursor to aid in pagination. + """ + edges: [ApplicationAnnouncementsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationAnnouncement` you could get from the connection. + """ + totalCount: Int! +} + +"""Table to pair an application to RFI data""" +type ApplicationAnnouncement implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """The foreign key of a form""" + announcementId: Int! + + """The foreign key of an application""" + applicationId: Int! + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Flag to identify either announcement is primary or secondary""" + isPrimary: Boolean + + """ + Column describing the operation (created, updated, deleted) for context on the history page + """ + historyOperation: String + + """ + Reads a single `Announcement` that is related to this `ApplicationAnnouncement`. + """ + announcementByAnnouncementId: Announcement + + """ + Reads a single `Application` that is related to this `ApplicationAnnouncement`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + """ + ccbcUserByArchivedBy: CcbcUser +} + +"""Table to hold the announcement data""" +type Announcement implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """The unique id of the announcement data""" + rowId: Int! + + """List of CCBC number of the projects included in announcement""" + ccbcNumbers: String + + """ + The json form data of the announcement form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fannouncement.json) + """ + jsonData: JSON! + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `CcbcUser` that is related to this `Announcement`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Announcement`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Announcement`.""" + ccbcUserByArchivedBy: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -34661,22 +36079,22 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8SowIdAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnnouncementAnnouncementIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -34695,22 +36113,22 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8SowIdAndUpdatedBy( + ccbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34741,10 +36159,10 @@ type ApplicationSowData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection! + ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8SowIdAndArchivedBy( + ccbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34760,108 +36178,65 @@ type ApplicationSowData implements Node { """Read all values in the set before (above) this cursor.""" before: Cursor - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection! -} - -"""A connection to a list of `SowTab2` values.""" -type SowTab2SConnection { - """A list of `SowTab2` objects.""" - nodes: [SowTab2]! - - """ - A list of edges which contains the `SowTab2` and cursor to aid in pagination. - """ - edges: [SowTab2SEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `SowTab2` you could get from the connection.""" - totalCount: Int! -} - -"""Table containing the detailed budget data for the given SoW""" -type SowTab2 implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the SoW detailed budget record""" - rowId: Int! - - """ID of the SoW""" - sowId: Int - - """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_2.json) - """ - jsonData: JSON! - - """created by user id""" - createdBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """created at timestamp""" - createdAt: Datetime! + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """updated by user id""" - updatedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """updated at timestamp""" - updatedAt: Datetime! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection! - """archived by user id""" - archivedBy: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """archived at timestamp""" - archivedAt: Datetime + """Only read the last `n` values of the set.""" + last: Int - """Reads a single `ApplicationSowData` that is related to this `SowTab2`.""" - applicationSowDataBySowId: ApplicationSowData + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Reads a single `CcbcUser` that is related to this `SowTab2`.""" - ccbcUserByCreatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Reads a single `CcbcUser` that is related to this `SowTab2`.""" - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Reads a single `CcbcUser` that is related to this `SowTab2`.""" - ccbcUserByArchivedBy: CcbcUser -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""A `SowTab2` edge in the connection.""" -type SowTab2SEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """The `SowTab2` at the end of the edge.""" - node: SowTab2 + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `SowTab2`.""" -enum SowTab2SOrderBy { +"""Methods to use when ordering `ApplicationAnnouncement`.""" +enum ApplicationAnnouncementsOrderBy { NATURAL - ID_ASC - ID_DESC - SOW_ID_ASC - SOW_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC + ANNOUNCEMENT_ID_ASC + ANNOUNCEMENT_ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -34874,22 +36249,24 @@ enum SowTab2SOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC + IS_PRIMARY_ASC + IS_PRIMARY_DESC + HISTORY_OPERATION_ASC + HISTORY_OPERATION_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `SowTab2` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationAnnouncement` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -input SowTab2Condition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `sowId` field.""" - sowId: Int +input ApplicationAnnouncementCondition { + """Checks for equality with the object’s `announcementId` field.""" + announcementId: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -34908,37 +36285,42 @@ input SowTab2Condition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime + + """Checks for equality with the object’s `isPrimary` field.""" + isPrimary: Boolean + + """Checks for equality with the object’s `historyOperation` field.""" + historyOperation: String } -"""A connection to a list of `SowTab1` values.""" -type SowTab1SConnection { - """A list of `SowTab1` objects.""" - nodes: [SowTab1]! +""" +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +""" +type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `SowTab1` and cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [SowTab1SEdge!]! + edges: [AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `SowTab1` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -type SowTab1 implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - rowId: Int! - sowId: Int +""" +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_1.json) - """ - jsonData: JSON! + """The `Application` at the end of the edge.""" + node: Application """created by user id""" createdBy: Int @@ -34958,371 +36340,329 @@ type SowTab1 implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `ApplicationSowData` that is related to this `SowTab1`.""" - applicationSowDataBySowId: ApplicationSowData - - """Reads a single `CcbcUser` that is related to this `SowTab1`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `SowTab1`.""" - ccbcUserByUpdatedBy: CcbcUser + """Flag to identify either announcement is primary or secondary""" + isPrimary: Boolean - """Reads a single `CcbcUser` that is related to this `SowTab1`.""" - ccbcUserByArchivedBy: CcbcUser + """ + Column describing the operation (created, updated, deleted) for context on the history page + """ + historyOperation: String } -"""A `SowTab1` edge in the connection.""" -type SowTab1SEdge { - """A cursor for use in pagination.""" - cursor: Cursor +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """The `SowTab1` at the end of the edge.""" - node: SowTab1 -} + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + """ + edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge!]! -"""Methods to use when ordering `SowTab1`.""" -enum SowTab1SOrderBy { - NATURAL - ID_ASC - ID_DESC - SOW_ID_ASC - SOW_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } """ -A condition to be used against `SowTab1` object types. All fields are tested for equality and combined with a logical ‘and.’ +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -input SowTab1Condition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `sowId` field.""" - sowId: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncementCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } -"""A connection to a list of `SowTab7` values.""" -type SowTab7SConnection { - """A list of `SowTab7` objects.""" - nodes: [SowTab7]! +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `SowTab7` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [SowTab7SEdge!]! + edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `SowTab7` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -type SowTab7 implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - rowId: Int! - sowId: Int +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_7.json) + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - jsonData: JSON! + applicationAnnouncementsByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """created by user id""" - createdBy: Int + """Only read the last `n` values of the set.""" + last: Int - """created at timestamp""" - createdAt: Datetime! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """updated by user id""" - updatedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """archived by user id""" - archivedBy: Int + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - """archived at timestamp""" - archivedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncementCondition - """Reads a single `ApplicationSowData` that is related to this `SowTab7`.""" - applicationSowDataBySowId: ApplicationSowData + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! +} - """Reads a single `CcbcUser` that is related to this `SowTab7`.""" - ccbcUserByCreatedBy: CcbcUser +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Reads a single `CcbcUser` that is related to this `SowTab7`.""" - ccbcUserByUpdatedBy: CcbcUser + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + """ + edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge!]! - """Reads a single `CcbcUser` that is related to this `SowTab7`.""" - ccbcUserByArchivedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } -"""A `SowTab7` edge in the connection.""" -type SowTab7SEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `SowTab7` at the end of the edge.""" - node: SowTab7 -} + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser -"""Methods to use when ordering `SowTab7`.""" -enum SowTab7SOrderBy { - NATURAL - ID_ASC - ID_DESC - SOW_ID_ASC - SOW_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A condition to be used against `SowTab7` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input SowTab7Condition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `sowId` field.""" - sowId: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncementCondition - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! +} - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int +"""A `ApplicationAnnouncement` edge in the connection.""" +type ApplicationAnnouncementsEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """The `ApplicationAnnouncement` at the end of the edge.""" + node: ApplicationAnnouncement } -"""A connection to a list of `SowTab8` values.""" -type SowTab8SConnection { - """A list of `SowTab8` objects.""" - nodes: [SowTab8]! +"""A connection to a list of `ApplicationFormData` values.""" +type ApplicationFormDataConnection { + """A list of `ApplicationFormData` objects.""" + nodes: [ApplicationFormData]! """ - A list of edges which contains the `SowTab8` and cursor to aid in pagination. + A list of edges which contains the `ApplicationFormData` and cursor to aid in pagination. """ - edges: [SowTab8SEdge!]! + edges: [ApplicationFormDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `SowTab8` you could get from the connection.""" + """ + The count of *all* `ApplicationFormData` you could get from the connection. + """ totalCount: Int! } -"""Table containing the detailed budget data for the given SoW""" -type SowTab8 implements Node { +"""Table to pair an application to form data""" +type ApplicationFormData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the SoW Tab 8""" - rowId: Int! + """The foreign key of a form""" + formDataId: Int! - """ID of the SoW""" - sowId: Int + """The foreign key of an application""" + applicationId: Int! """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_8.json) + Reads a single `FormData` that is related to this `ApplicationFormData`. """ - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Reads a single `ApplicationSowData` that is related to this `SowTab8`.""" - applicationSowDataBySowId: ApplicationSowData - - """Reads a single `CcbcUser` that is related to this `SowTab8`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `SowTab8`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `SowTab8`.""" - ccbcUserByArchivedBy: CcbcUser -} - -"""A `SowTab8` edge in the connection.""" -type SowTab8SEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `SowTab8` at the end of the edge.""" - node: SowTab8 -} + formDataByFormDataId: FormData -"""Methods to use when ordering `SowTab8`.""" -enum SowTab8SOrderBy { - NATURAL - ID_ASC - ID_DESC - SOW_ID_ASC - SOW_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC + """ + Reads a single `Application` that is related to this `ApplicationFormData`. + """ + applicationByApplicationId: Application } -""" -A condition to be used against `SowTab8` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input SowTab8Condition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +"""Table to hold applicant form data""" +type FormData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Checks for equality with the object’s `sowId` field.""" - sowId: Int + """The unique id of the form data""" + rowId: Int! - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """ + The json form data of the project information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fform_data.json) + """ + jsonData: JSON! - """Checks for equality with the object’s `createdBy` field.""" + """Column saving the key of the last edited form page""" + lastEditedPage: String + + """Column referencing the form data status type, defaults to draft""" + formDataStatusTypeId: String + + """created by user id""" createdBy: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """created at timestamp""" + createdAt: Datetime! - """Checks for equality with the object’s `updatedBy` field.""" + """updated by user id""" updatedBy: Int - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """updated at timestamp""" + updatedAt: Datetime! - """Checks for equality with the object’s `archivedBy` field.""" + """archived by user id""" archivedBy: Int - """Checks for equality with the object’s `archivedAt` field.""" + """archived at timestamp""" archivedAt: Datetime -} -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Schema for the respective form_data""" + formSchemaId: Int + + """Column to track analysts reason for changing form data""" + reasonForChange: String """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + Reads a single `FormDataStatusType` that is related to this `FormData`. """ - edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge!]! + formDataStatusTypeByFormDataStatusTypeId: FormDataStatusType - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Reads a single `CcbcUser` that is related to this `FormData`.""" + ccbcUserByCreatedBy: CcbcUser - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Reads a single `CcbcUser` that is related to this `FormData`.""" + ccbcUserByUpdatedBy: CcbcUser -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Reads a single `CcbcUser` that is related to this `FormData`.""" + ccbcUserByArchivedBy: CcbcUser - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Reads a single `Form` that is related to this `FormData`.""" + formByFormSchemaId: Form - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( + """Reads and enables pagination through a set of `ApplicationFormData`.""" + applicationFormDataByFormDataId( """Only read the first `n` values of the set.""" first: Int @@ -35341,48 +36681,25 @@ type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationFormData`.""" + orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationFormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. - """ - edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + filter: ApplicationFormDataFilter + ): ApplicationFormDataConnection! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """computed column to display whether form_data is editable or not""" + isEditable: Boolean - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationFormDataFormDataIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -35401,48 +36718,36 @@ type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ApplicationFilter + ): FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - +"""The statuses applicable to a form""" +type FormDataStatusType implements Node { """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + id: ID! -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """The name of the status type""" + name: String! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The description of the status type""" + description: String - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -35461,48 +36766,22 @@ type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. - """ - edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: FormDataFilter + ): FormDataConnection! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormDataStatusTypeIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -35521,48 +36800,22 @@ type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. - """ - edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormDataStatusTypeIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -35581,48 +36834,22 @@ type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. - """ - edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormDataStatusTypeIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -35641,48 +36868,22 @@ type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. - """ - edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataFormDataStatusTypeIdAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -35701,90 +36902,131 @@ type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: FormCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: FormFilter + ): FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `FormData` values.""" +type FormDataConnection { + """A list of `FormData` objects.""" + nodes: [FormData]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `FormData` and cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge!]! + edges: [FormDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `FormData` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge { +"""A `FormData` edge in the connection.""" +type FormDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `FormData` at the end of the edge.""" + node: FormData +} - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +"""Methods to use when ordering `FormData`.""" +enum FormDataOrderBy { + NATURAL + ID_ASC + ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + LAST_EDITED_PAGE_ASC + LAST_EDITED_PAGE_DESC + FORM_DATA_STATUS_TYPE_ID_ASC + FORM_DATA_STATUS_TYPE_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + FORM_SCHEMA_ID_ASC + FORM_SCHEMA_ID_DESC + REASON_FOR_CHANGE_ASC + REASON_FOR_CHANGE_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `FormData` object types. All fields are tested +for equality and combined with a logical ‘and.’ +""" +input FormDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `lastEditedPage` field.""" + lastEditedPage: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `formDataStatusTypeId` field.""" + formDataStatusTypeId: String - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: SowTab7Condition + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab7Filter - ): SowTab7SConnection! + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `formSchemaId` field.""" + formSchemaId: Int + + """Checks for equality with the object’s `reasonForChange` field.""" + reasonForChange: String } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge!]! + edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -35793,16 +37035,16 @@ type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -35821,30 +37063,32 @@ type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: FormDataFilter + ): FormDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge!]! + edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -35853,16 +37097,16 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -35881,30 +37125,32 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: FormDataFilter + ): FormDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge!]! + edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -35913,16 +37159,16 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -35941,48 +37187,65 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: FormDataFilter + ): FormDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Form` values, with data from `FormData`.""" +type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge!]! + edges: [FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Form` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""Table to hold the json_schema for forms""" +type Form implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Primary key on form""" + rowId: Int! - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( + """The end url for the form data""" + slug: String + + """The JSON schema for the respective form""" + jsonSchema: JSON! + + """Description of the form""" + description: String + + """The type of form being stored""" + formType: String + + """Reads a single `FormType` that is related to this `Form`.""" + formTypeByFormType: FormType + + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -36001,882 +37264,712 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! -} + filter: FormDataFilter + ): FormDataConnection! -"""A `ApplicationSowData` edge in the connection.""" -type ApplicationSowDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeId( + """Only read the first `n` values of the set.""" + first: Int - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData -} + """Only read the last `n` values of the set.""" + last: Int -"""Methods to use when ordering `ApplicationSowData`.""" -enum ApplicationSowDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - AMENDMENT_NUMBER_ASC - AMENDMENT_NUMBER_DESC - IS_AMENDMENT_ASC - IS_AMENDMENT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -""" -A condition to be used against `ApplicationSowData` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input ApplicationSowDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataStatusTypeCondition - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataStatusTypeFilter + ): FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection! - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormSchemaIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `amendmentNumber` field.""" - amendmentNumber: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `isAmendment` field.""" - isAmendment: Boolean -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""A connection to a list of `ProjectInformationData` values.""" -type ProjectInformationDataConnection { - """A list of `ProjectInformationData` objects.""" - nodes: [ProjectInformationData]! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - A list of edges which contains the `ProjectInformationData` and cursor to aid in pagination. - """ - edges: [ProjectInformationDataEdge!]! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection! - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormSchemaIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - The count of *all* `ProjectInformationData` you could get from the connection. - """ - totalCount: Int! -} + """Only read the last `n` values of the set.""" + last: Int -"""Table to store project information data""" -type ProjectInformationData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Unique id for the row""" - rowId: Int! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """The foreign key of an application""" - applicationId: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - The json form data of the project information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fproject_information_data.json) - """ - jsonData: JSON! + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """created by user id""" - createdBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """created at timestamp""" - createdAt: Datetime! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection! - """updated by user id""" - updatedBy: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByFormDataFormSchemaIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """updated at timestamp""" - updatedAt: Datetime! + """Only read the last `n` values of the set.""" + last: Int - """archived by user id""" - archivedBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """archived at timestamp""" - archivedAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Reads a single `Application` that is related to this `ProjectInformationData`. - """ - applicationByApplicationId: Application + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Reads a single `CcbcUser` that is related to this `ProjectInformationData`. - """ - ccbcUserByCreatedBy: CcbcUser + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """ - Reads a single `CcbcUser` that is related to this `ProjectInformationData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Reads a single `CcbcUser` that is related to this `ProjectInformationData`. - """ - ccbcUserByArchivedBy: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection! } -"""A `ProjectInformationData` edge in the connection.""" -type ProjectInformationDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ProjectInformationData` at the end of the edge.""" - node: ProjectInformationData -} +"""Table containing the different types of forms used in the application""" +type FormType implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! -"""Methods to use when ordering `ProjectInformationData`.""" -enum ProjectInformationDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """Primary key and unique identifier of the type of form""" + name: String! -""" -A condition to be used against `ProjectInformationData` object types. All fields -are tested for equality and combined with a logical ‘and.’ -""" -input ProjectInformationDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """Description of the type of form""" + description: String - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Reads and enables pagination through a set of `Form`.""" + formsByFormType( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormCondition - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormFilter + ): FormsConnection! } -"""A connection to a list of `ChangeRequestData` values.""" -type ChangeRequestDataConnection { - """A list of `ChangeRequestData` objects.""" - nodes: [ChangeRequestData]! +"""A connection to a list of `Form` values.""" +type FormsConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - A list of edges which contains the `ChangeRequestData` and cursor to aid in pagination. + A list of edges which contains the `Form` and cursor to aid in pagination. """ - edges: [ChangeRequestDataEdge!]! + edges: [FormsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ChangeRequestData` you could get from the connection. - """ + """The count of *all* `Form` you could get from the connection.""" totalCount: Int! } -"""Table to store change request data""" -type ChangeRequestData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique id for the row""" - rowId: Int! - - """The foreign key of an application""" - applicationId: Int - - """The json form data of the change request form""" - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - amendmentNumber: Int - - """ - Reads a single `Application` that is related to this `ChangeRequestData`. - """ - applicationByApplicationId: Application - - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" - ccbcUserByArchivedBy: CcbcUser -} - -"""A `ChangeRequestData` edge in the connection.""" -type ChangeRequestDataEdge { +"""A `Form` edge in the connection.""" +type FormsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ChangeRequestData` at the end of the edge.""" - node: ChangeRequestData + """The `Form` at the end of the edge.""" + node: Form } -"""Methods to use when ordering `ChangeRequestData`.""" -enum ChangeRequestDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - AMENDMENT_NUMBER_ASC - AMENDMENT_NUMBER_DESC +"""Methods to use when ordering `Form`.""" +enum FormsOrderBy { + NATURAL + ID_ASC + ID_DESC + SLUG_ASC + SLUG_DESC + JSON_SCHEMA_ASC + JSON_SCHEMA_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + FORM_TYPE_ASC + FORM_TYPE_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ChangeRequestData` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A condition to be used against `Form` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ChangeRequestDataCondition { +input FormCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Checks for equality with the object’s `slug` field.""" + slug: String - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Checks for equality with the object’s `jsonSchema` field.""" + jsonSchema: JSON - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """Checks for equality with the object’s `description` field.""" + description: String - """Checks for equality with the object’s `amendmentNumber` field.""" - amendmentNumber: Int + """Checks for equality with the object’s `formType` field.""" + formType: String } """ -A connection to a list of `ApplicationCommunityProgressReportData` values. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type ApplicationCommunityProgressReportDataConnection { - """A list of `ApplicationCommunityProgressReportData` objects.""" - nodes: [ApplicationCommunityProgressReportData]! +type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! """ - A list of edges which contains the `ApplicationCommunityProgressReportData` and cursor to aid in pagination. + A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationCommunityProgressReportDataEdge!]! + edges: [FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationCommunityProgressReportData` you could get from the connection. + The count of *all* `FormDataStatusType` you could get from the connection. """ totalCount: Int! } """ -Table containing the Community Progress Report data for the given application +A `FormDataStatusType` edge in the connection, with data from `FormData`. """ -type ApplicationCommunityProgressReportData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the Community Progress Report""" - rowId: Int! - - """ID of the application this Community Progress Report belongs to""" - applicationId: Int - - """ - The due date, date received and the file information of the Community Progress Report Excel file - """ - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int +type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """archived at timestamp""" - archivedAt: Datetime + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """The id of the excel data that this record is associated with""" - excelDataId: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( + """Only read the first `n` values of the set.""" + first: Int - """History operation""" - historyOperation: String + """Only read the last `n` values of the set.""" + last: Int - """ - Reads a single `Application` that is related to this `ApplicationCommunityProgressReportData`. - """ - applicationByApplicationId: Application + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. - """ - ccbcUserByCreatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] -"""A `ApplicationCommunityProgressReportData` edge in the connection.""" -type ApplicationCommunityProgressReportDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """The `ApplicationCommunityProgressReportData` at the end of the edge.""" - node: ApplicationCommunityProgressReportData + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } -"""Methods to use when ordering `ApplicationCommunityProgressReportData`.""" -enum ApplicationCommunityProgressReportDataOrderBy { +"""Methods to use when ordering `FormDataStatusType`.""" +enum FormDataStatusTypesOrderBy { NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - EXCEL_DATA_ID_ASC - EXCEL_DATA_ID_DESC - HISTORY_OPERATION_ASC - HISTORY_OPERATION_DESC + NAME_ASC + NAME_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationCommunityProgressReportData` object -types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `FormDataStatusType` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input ApplicationCommunityProgressReportDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime - - """Checks for equality with the object’s `excelDataId` field.""" - excelDataId: Int +input FormDataStatusTypeCondition { + """Checks for equality with the object’s `name` field.""" + name: String - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String + """Checks for equality with the object’s `description` field.""" + description: String } """ -A connection to a list of `ApplicationCommunityReportExcelData` values. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type ApplicationCommunityReportExcelDataConnection { - """A list of `ApplicationCommunityReportExcelData` objects.""" - nodes: [ApplicationCommunityReportExcelData]! +type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationCommunityReportExcelData` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationCommunityReportExcelDataEdge!]! + edges: [FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationCommunityReportExcelData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -Table containing the Community Report excel data for the given application -""" -type ApplicationCommunityReportExcelData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Unique ID for the Community Report excel data""" - rowId: Int! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ID of the application this Community Report belongs to""" - applicationId: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """The data imported from the excel filled by the respondent""" - jsonData: JSON! + """Only read the last `n` values of the set.""" + last: Int - """created by user id""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """created at timestamp""" - createdAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated by user id""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """archived by user id""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """archived at timestamp""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationCommunityReportExcelData`. - """ - applicationByApplicationId: Application +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. - """ - ccbcUserByArchivedBy: CcbcUser + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationCommunityReportExcelData` edge in the connection.""" -type ApplicationCommunityReportExcelDataEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationCommunityReportExcelData` at the end of the edge.""" - node: ApplicationCommunityReportExcelData -} - -"""Methods to use when ordering `ApplicationCommunityReportExcelData`.""" -enum ApplicationCommunityReportExcelDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationCommunityReportExcelData` object -types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationCommunityReportExcelDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } -"""A connection to a list of `ApplicationClaimsData` values.""" -type ApplicationClaimsDataConnection { - """A list of `ApplicationClaimsData` objects.""" - nodes: [ApplicationClaimsData]! +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationClaimsData` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [ApplicationClaimsDataEdge!]! + edges: [FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationClaimsData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table containing the claims data for the given application""" -type ApplicationClaimsData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Unique id for the claims""" - rowId: Int! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Id of the application the claims belongs to""" - applicationId: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """The claims form json data""" - jsonData: JSON! + """Only read the last `n` values of the set.""" + last: Int - """The id of the excel data that this record is associated with""" - excelDataId: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """created by user id""" - createdBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """created at timestamp""" - createdAt: Datetime! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """updated by user id""" - updatedBy: Int + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """updated at timestamp""" - updatedAt: Datetime! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """archived by user id""" - archivedBy: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! +} - """archived at timestamp""" - archivedAt: Datetime +"""A `Form` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Column to track if record was created, updated or deleted for history""" - historyOperation: String + """The `Form` at the end of the edge.""" + node: Form - """ - Reads a single `Application` that is related to this `ApplicationClaimsData`. - """ - applicationByApplicationId: Application + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. - """ - ccbcUserByCreatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] -"""A `ApplicationClaimsData` edge in the connection.""" -type ApplicationClaimsDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """The `ApplicationClaimsData` at the end of the edge.""" - node: ApplicationClaimsData + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! } -"""Methods to use when ordering `ApplicationClaimsData`.""" -enum ApplicationClaimsDataOrderBy { +"""Methods to use when ordering `ApplicationFormData`.""" +enum ApplicationFormDataOrderBy { NATURAL - ID_ASC - ID_DESC + FORM_DATA_ID_ASC + FORM_DATA_ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - EXCEL_DATA_ID_ASC - EXCEL_DATA_ID_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - HISTORY_OPERATION_ASC - HISTORY_OPERATION_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationClaimsData` object types. All fields +A condition to be used against `ApplicationFormData` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationClaimsDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +input ApplicationFormDataCondition { + """Checks for equality with the object’s `formDataId` field.""" + formDataId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int +} - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `excelDataId` field.""" - excelDataId: Int +""" +A connection to a list of `Application` values, with data from `ApplicationFormData`. +""" +type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + A list of edges which contains the `Application`, info from the `ApplicationFormData`, and the cursor to aid in pagination. + """ + edges: [FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge!]! - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime +""" +A `Application` edge in the connection, with data from `ApplicationFormData`. +""" +type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """The `Application` at the end of the edge.""" + node: Application +} - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime +"""A `ApplicationFormData` edge in the connection.""" +type ApplicationFormDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String + """The `ApplicationFormData` at the end of the edge.""" + node: ApplicationFormData } -"""A connection to a list of `ApplicationClaimsExcelData` values.""" -type ApplicationClaimsExcelDataConnection { - """A list of `ApplicationClaimsExcelData` objects.""" - nodes: [ApplicationClaimsExcelData]! +"""A connection to a list of `ApplicationRfiData` values.""" +type ApplicationRfiDataConnection { + """A list of `ApplicationRfiData` objects.""" + nodes: [ApplicationRfiData]! """ - A list of edges which contains the `ApplicationClaimsExcelData` and cursor to aid in pagination. + A list of edges which contains the `ApplicationRfiData` and cursor to aid in pagination. """ - edges: [ApplicationClaimsExcelDataEdge!]! + edges: [ApplicationRfiDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationClaimsExcelData` you could get from the connection. + The count of *all* `ApplicationRfiData` you could get from the connection. """ totalCount: Int! } -"""Table containing the claims excel data for the given application""" -type ApplicationClaimsExcelData implements Node { +"""Table to pair an application to RFI data""" +type ApplicationRfiData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the claims excel data""" + """The foreign key of a form""" + rfiDataId: Int! + + """The foreign key of an application""" + applicationId: Int! + + """ + Reads a single `RfiData` that is related to this `ApplicationRfiData`. + """ + rfiDataByRfiDataId: RfiData + + """ + Reads a single `Application` that is related to this `ApplicationRfiData`. + """ + applicationByApplicationId: Application +} + +"""Table to hold RFI form data""" +type RfiData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """The unique id of the form data""" rowId: Int! - """ID of the application this data belongs to""" - applicationId: Int + """Reference number assigned to the RFI""" + rfiNumber: String - """The data imported from the excel filled by the respondent""" + """ + The json form data of the RFI information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Frfi_data.json) + """ jsonData: JSON! + """Column referencing the form data status type, defaults to draft""" + rfiDataStatusTypeId: String + """created by user id""" createdBy: Int @@ -36895,343 +37988,300 @@ type ApplicationClaimsExcelData implements Node { """archived at timestamp""" archivedAt: Datetime - """ - Reads a single `Application` that is related to this `ApplicationClaimsExcelData`. - """ - applicationByApplicationId: Application + """Reads a single `RfiDataStatusType` that is related to this `RfiData`.""" + rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusType - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. - """ + """Reads a single `CcbcUser` that is related to this `RfiData`.""" ccbcUserByCreatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. - """ + """Reads a single `CcbcUser` that is related to this `RfiData`.""" ccbcUserByUpdatedBy: CcbcUser - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. - """ + """Reads a single `CcbcUser` that is related to this `RfiData`.""" ccbcUserByArchivedBy: CcbcUser -} -"""A `ApplicationClaimsExcelData` edge in the connection.""" -type ApplicationClaimsExcelDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ApplicationClaimsExcelData` at the end of the edge.""" - node: ApplicationClaimsExcelData -} - -"""Methods to use when ordering `ApplicationClaimsExcelData`.""" -enum ApplicationClaimsExcelDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationClaimsExcelData` object types. All -fields are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationClaimsExcelDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Reads and enables pagination through a set of `ApplicationRfiData`.""" + applicationRfiDataByRfiDataId( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} + """The method to use when ordering `ApplicationRfiData`.""" + orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] -"""A connection to a list of `ApplicationMilestoneData` values.""" -type ApplicationMilestoneDataConnection { - """A list of `ApplicationMilestoneData` objects.""" - nodes: [ApplicationMilestoneData]! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationRfiDataCondition - """ - A list of edges which contains the `ApplicationMilestoneData` and cursor to aid in pagination. - """ - edges: [ApplicationMilestoneDataEdge!]! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationRfiDataFilter + ): ApplicationRfiDataConnection! - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Computed column to return all attachement rows for an rfi_data row""" + attachments( + """Only read the first `n` values of the set.""" + first: Int - """ - The count of *all* `ApplicationMilestoneData` you could get from the connection. - """ - totalCount: Int! -} + """Only read the last `n` values of the set.""" + last: Int -"""Table containing the milestone data for the given application""" -type ApplicationMilestoneData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Unique id for the milestone""" - rowId: Int! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Id of the application the milestone belongs to""" - applicationId: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The milestone form json data""" - jsonData: JSON! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AttachmentFilter + ): AttachmentsConnection! - """The id of the excel data that this record is associated with""" - excelDataId: Int + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationRfiDataRfiDataIdAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """created by user id""" - createdBy: Int + """Only read the last `n` values of the set.""" + last: Int - """created at timestamp""" - createdAt: Datetime! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """updated by user id""" - updatedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """archived by user id""" - archivedBy: Int + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - """archived at timestamp""" - archivedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition - """History operation""" - historyOperation: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection! +} +"""The statuses applicable to an RFI""" +type RfiDataStatusType implements Node { """ - Reads a single `Application` that is related to this `ApplicationMilestoneData`. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - applicationByApplicationId: Application + id: ID! - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. - """ - ccbcUserByCreatedBy: CcbcUser + """The name of the status type""" + name: String! - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """The description of the status type""" + description: String - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByRfiDataStatusTypeId( + """Only read the first `n` values of the set.""" + first: Int -"""A `ApplicationMilestoneData` edge in the connection.""" -type ApplicationMilestoneDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Only read the last `n` values of the set.""" + last: Int - """The `ApplicationMilestoneData` at the end of the edge.""" - node: ApplicationMilestoneData -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -"""Methods to use when ordering `ApplicationMilestoneData`.""" -enum ApplicationMilestoneDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - EXCEL_DATA_ID_ASC - EXCEL_DATA_ID_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - HISTORY_OPERATION_ASC - HISTORY_OPERATION_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A condition to be used against `ApplicationMilestoneData` object types. All -fields are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationMilestoneDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: RfiDataCondition - """Checks for equality with the object’s `excelDataId` field.""" - excelDataId: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: RfiDataFilter + ): RfiDataConnection! - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String -} + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int -"""A connection to a list of `ApplicationMilestoneExcelData` values.""" -type ApplicationMilestoneExcelDataConnection { - """A list of `ApplicationMilestoneExcelData` objects.""" - nodes: [ApplicationMilestoneExcelData]! + """Only read the last `n` values of the set.""" + last: Int - """ - A list of edges which contains the `ApplicationMilestoneExcelData` and cursor to aid in pagination. - """ - edges: [ApplicationMilestoneExcelDataEdge!]! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - The count of *all* `ApplicationMilestoneExcelData` you could get from the connection. - """ - totalCount: Int! -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -"""Table containing the milestone excel data for the given application""" -type ApplicationMilestoneExcelData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Unique ID for the milestone excel data""" - rowId: Int! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ID of the application this data belongs to""" - applicationId: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection! - """The data imported from the excel filled by the respondent""" - jsonData: JSON! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """created by user id""" - createdBy: Int + """Only read the last `n` values of the set.""" + last: Int - """created at timestamp""" - createdAt: Datetime! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """updated by user id""" - updatedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """archived by user id""" - archivedBy: Int + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """archived at timestamp""" - archivedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """ - Reads a single `Application` that is related to this `ApplicationMilestoneExcelData`. - """ - applicationByApplicationId: Application + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection! +} - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. - """ - ccbcUserByCreatedBy: CcbcUser +"""A connection to a list of `RfiData` values.""" +type RfiDataConnection { + """A list of `RfiData` objects.""" + nodes: [RfiData]! """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + A list of edges which contains the `RfiData` and cursor to aid in pagination. """ - ccbcUserByUpdatedBy: CcbcUser + edges: [RfiDataEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. - """ - ccbcUserByArchivedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `RfiData` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationMilestoneExcelData` edge in the connection.""" -type ApplicationMilestoneExcelDataEdge { +"""A `RfiData` edge in the connection.""" +type RfiDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationMilestoneExcelData` at the end of the edge.""" - node: ApplicationMilestoneExcelData + """The `RfiData` at the end of the edge.""" + node: RfiData } -"""Methods to use when ordering `ApplicationMilestoneExcelData`.""" -enum ApplicationMilestoneExcelDataOrderBy { +"""Methods to use when ordering `RfiData`.""" +enum RfiDataOrderBy { NATURAL ID_ASC ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC + RFI_NUMBER_ASC + RFI_NUMBER_DESC JSON_DATA_ASC JSON_DATA_DESC + RFI_DATA_STATUS_TYPE_ID_ASC + RFI_DATA_STATUS_TYPE_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -37249,19 +38299,22 @@ enum ApplicationMilestoneExcelDataOrderBy { } """ -A condition to be used against `ApplicationMilestoneExcelData` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `RfiData` object types. All fields are tested +for equality and combined with a logical ‘and.’ """ -input ApplicationMilestoneExcelDataCondition { +input RfiDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Checks for equality with the object’s `rfiNumber` field.""" + rfiNumber: String """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON + """Checks for equality with the object’s `rfiDataStatusTypeId` field.""" + rfiDataStatusTypeId: String + """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -37281,326 +38334,295 @@ input ApplicationMilestoneExcelDataCondition { archivedAt: Datetime } -"""A connection to a list of `ApplicationInternalDescription` values.""" -type ApplicationInternalDescriptionsConnection { - """A list of `ApplicationInternalDescription` objects.""" - nodes: [ApplicationInternalDescription]! +""" +A connection to a list of `CcbcUser` values, with data from `RfiData`. +""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationInternalDescription` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [ApplicationInternalDescriptionsEdge!]! + edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationInternalDescription` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table containing the internal description for the given application""" -type ApplicationInternalDescription implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Unique id for the row""" - rowId: Int! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Id of the application the description belongs to""" - applicationId: Int + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """The internal description for the given application""" - description: String + """Only read the last `n` values of the set.""" + last: Int - """created by user id""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """created at timestamp""" - createdAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated by user id""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] - """archived by user id""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: RfiDataCondition - """archived at timestamp""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: RfiDataFilter + ): RfiDataConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationInternalDescription`. - """ - applicationByApplicationId: Application +""" +A connection to a list of `CcbcUser` values, with data from `RfiData`. +""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. - """ - ccbcUserByArchivedBy: CcbcUser + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationInternalDescription` edge in the connection.""" -type ApplicationInternalDescriptionsEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationInternalDescription` at the end of the edge.""" - node: ApplicationInternalDescription -} - -"""Methods to use when ordering `ApplicationInternalDescription`.""" -enum ApplicationInternalDescriptionsOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationInternalDescription` object types. -All fields are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationInternalDescriptionCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `description` field.""" - description: String + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: RfiDataCondition - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: RfiDataFilter + ): RfiDataConnection! } -"""A connection to a list of `ApplicationProjectType` values.""" -type ApplicationProjectTypesConnection { - """A list of `ApplicationProjectType` objects.""" - nodes: [ApplicationProjectType]! +""" +A connection to a list of `CcbcUser` values, with data from `RfiData`. +""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationProjectType` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [ApplicationProjectTypesEdge!]! + edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationProjectType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table containing the project type of the application""" -type ApplicationProjectType implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the application_project_type""" - rowId: Int! - - """ID of the application this application_project_type belongs to""" - applicationId: Int - - """Column containing the project type of the application""" - projectType: String - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """archived by user id""" - archivedBy: Int + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """archived at timestamp""" - archivedAt: Datetime + """Only read the last `n` values of the set.""" + last: Int - """ - Reads a single `Application` that is related to this `ApplicationProjectType`. - """ - applicationByApplicationId: Application + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. - """ - ccbcUserByCreatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] -"""A `ApplicationProjectType` edge in the connection.""" -type ApplicationProjectTypesEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: RfiDataCondition - """The `ApplicationProjectType` at the end of the edge.""" - node: ApplicationProjectType + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: RfiDataFilter + ): RfiDataConnection! } -"""Methods to use when ordering `ApplicationProjectType`.""" -enum ApplicationProjectTypesOrderBy { +"""Methods to use when ordering `ApplicationRfiData`.""" +enum ApplicationRfiDataOrderBy { NATURAL - ID_ASC - ID_DESC + RFI_DATA_ID_ASC + RFI_DATA_ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - PROJECT_TYPE_ASC - PROJECT_TYPE_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationProjectType` object types. All fields +A condition to be used against `ApplicationRfiData` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationProjectTypeCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +input ApplicationRfiDataCondition { + """Checks for equality with the object’s `rfiDataId` field.""" + rfiDataId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int +} - """Checks for equality with the object’s `projectType` field.""" - projectType: String +""" +A connection to a list of `Application` values, with data from `ApplicationRfiData`. +""" +type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + A list of edges which contains the `Application`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. + """ + edges: [RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge!]! - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime +""" +A `Application` edge in the connection, with data from `ApplicationRfiData`. +""" +type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """The `Application` at the end of the edge.""" + node: Application +} - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime +"""A `ApplicationRfiData` edge in the connection.""" +type ApplicationRfiDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationRfiData` at the end of the edge.""" + node: ApplicationRfiData } -"""A connection to a list of `Notification` values.""" -type NotificationsConnection { - """A list of `Notification` objects.""" - nodes: [Notification]! +"""A connection to a list of `ApplicationPendingChangeRequest` values.""" +type ApplicationPendingChangeRequestsConnection { + """A list of `ApplicationPendingChangeRequest` objects.""" + nodes: [ApplicationPendingChangeRequest]! """ - A list of edges which contains the `Notification` and cursor to aid in pagination. + A list of edges which contains the `ApplicationPendingChangeRequest` and cursor to aid in pagination. """ - edges: [NotificationsEdge!]! + edges: [ApplicationPendingChangeRequestsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Notification` you could get from the connection.""" + """ + The count of *all* `ApplicationPendingChangeRequest` you could get from the connection. + """ totalCount: Int! } -"""Table containing list of application notifications""" -type Notification implements Node { +"""Table containing the pending change request details of the application""" +type ApplicationPendingChangeRequest implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for each notification""" + """Unique ID for the application_pending_change_request""" rowId: Int! - """Type of the notification""" - notificationType: String - - """ID of the application this notification belongs to""" + """ + ID of the application this application_pending_change_request belongs to + """ applicationId: Int - """Additional data for the notification""" - jsonData: JSON! + """Column defining if the change request pending or not""" + isPending: Boolean - """Column referencing the email record""" - emailRecordId: Int + """ + Column containing the comment for the change request or completion of the change request + """ + comment: String """created by user id""" createdBy: Int @@ -37620,49 +38642,54 @@ type Notification implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `Application` that is related to this `Notification`.""" - applicationByApplicationId: Application + """ + ID of the cbc application this application_pending_change_request belongs to + """ + cbcId: Int - """Reads a single `EmailRecord` that is related to this `Notification`.""" - emailRecordByEmailRecordId: EmailRecord + """ + Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. + """ + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `Notification`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `Notification`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `Notification`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ ccbcUserByArchivedBy: CcbcUser + + """ + Reads a single `Cbc` that is related to this `ApplicationPendingChangeRequest`. + """ + cbcByCbcId: Cbc } -"""Table containing list of application email_records""" -type EmailRecord implements Node { +""" +Table containing the data imported from the CBC projects excel file, by rows +""" +type Cbc implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for each email sent""" + """Unique ID for the row""" rowId: Int! - """Email Address(es) of the recipients""" - toEmail: String - - """Email Address(es) of the CC recipients""" - ccEmail: String - - """Subject of the email""" - subject: String - - """Body of the email""" - body: String - - """Message ID of the email returned by the email server""" - messageId: String + """The project number, unique for each project""" + projectNumber: Int! - """Additional data for the email""" - jsonData: JSON! + """The timestamp of the last time the data was updated from sharepoint""" + sharepointTimestamp: Datetime """created by user id""" createdBy: Int @@ -37682,17 +38709,19 @@ type EmailRecord implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + """Reads a single `CcbcUser` that is related to this `Cbc`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + """Reads a single `CcbcUser` that is related to this `Cbc`.""" ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + """Reads a single `CcbcUser` that is related to this `Cbc`.""" ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -37711,22 +38740,90 @@ type EmailRecord implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection! + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationEmailRecordIdAndApplicationId( + applicationsByApplicationPendingChangeRequestCbcIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -37757,10 +38854,10 @@ type EmailRecord implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection! + ): CbcApplicationsByApplicationPendingChangeRequestCbcIdAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationEmailRecordIdAndCreatedBy( + ccbcUsersByApplicationPendingChangeRequestCbcIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37791,10 +38888,10 @@ type EmailRecord implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection! + ): CbcCcbcUsersByApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationEmailRecordIdAndUpdatedBy( + ccbcUsersByApplicationPendingChangeRequestCbcIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37825,10 +38922,10 @@ type EmailRecord implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection! + ): CbcCcbcUsersByApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationEmailRecordIdAndArchivedBy( + ccbcUsersByApplicationPendingChangeRequestCbcIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -37859,106 +38956,44 @@ type EmailRecord implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection! -} - -"""Methods to use when ordering `Notification`.""" -enum NotificationsOrderBy { - NATURAL - ID_ASC - ID_DESC - NOTIFICATION_TYPE_ASC - NOTIFICATION_TYPE_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - EMAIL_RECORD_ID_ASC - EMAIL_RECORD_ID_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `Notification` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input NotificationCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `notificationType` field.""" - notificationType: String - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `emailRecordId` field.""" - emailRecordId: Int - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + ): CbcCcbcUsersByApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyConnection! - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCbcIdAndProjectNumber( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} + """Only read the last `n` values of the set.""" + last: Int -""" -A connection to a list of `Application` values, with data from `Notification`. -""" -type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. - """ - edges: [EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge!]! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] -"""A `Application` edge in the connection, with data from `Notification`.""" -type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition - """The `Application` at the end of the edge.""" - node: Application + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataCbcIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37977,50 +39012,22 @@ type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. - """ - edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataCbcIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38039,50 +39046,22 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. - """ - edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataCbcIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -38101,50 +39080,22 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. - """ - edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataProjectNumberAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -38163,118 +39114,121 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! -} + filter: CbcFilter + ): CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyConnection! -"""A `Notification` edge in the connection.""" -type NotificationsEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataProjectNumberAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """The `Notification` at the end of the edge.""" - node: Notification -} + """Only read the last `n` values of the set.""" + last: Int -"""A connection to a list of `ApplicationPendingChangeRequest` values.""" -type ApplicationPendingChangeRequestsConnection { - """A list of `ApplicationPendingChangeRequest` objects.""" - nodes: [ApplicationPendingChangeRequest]! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - A list of edges which contains the `ApplicationPendingChangeRequest` and cursor to aid in pagination. - """ - edges: [ApplicationPendingChangeRequestsEdge!]! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - The count of *all* `ApplicationPendingChangeRequest` you could get from the connection. - """ - totalCount: Int! -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""Table containing the pending change request details of the application""" -type ApplicationPendingChangeRequest implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Unique ID for the application_pending_change_request""" - rowId: Int! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyConnection! - """ - ID of the application this application_pending_change_request belongs to - """ - applicationId: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataProjectNumberAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Column defining if the change request pending or not""" - isPending: Boolean + """Only read the last `n` values of the set.""" + last: Int - """ - Column containing the comment for the change request or completion of the change request - """ - comment: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """created by user id""" - createdBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """created at timestamp""" - createdAt: Datetime! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """updated by user id""" - updatedBy: Int + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """updated at timestamp""" - updatedAt: Datetime! + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """archived by user id""" - archivedBy: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyConnection! - """archived at timestamp""" - archivedAt: Datetime + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataProjectNumberAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. - """ - applicationByApplicationId: Application + """Only read the last `n` values of the set.""" + last: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByCreatedBy: CcbcUser + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByArchivedBy: CcbcUser -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -"""A `ApplicationPendingChangeRequest` edge in the connection.""" -type ApplicationPendingChangeRequestsEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """The `ApplicationPendingChangeRequest` at the end of the edge.""" - node: ApplicationPendingChangeRequest + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyConnection! } """Methods to use when ordering `ApplicationPendingChangeRequest`.""" @@ -38300,6 +39254,8 @@ enum ApplicationPendingChangeRequestsOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC + CBC_ID_ASC + CBC_ID_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } @@ -38338,188 +39294,190 @@ input ApplicationPendingChangeRequestCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime + + """Checks for equality with the object’s `cbcId` field.""" + cbcId: Int } -"""A connection to a list of `Announcement` values.""" -type AnnouncementsConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +"""A connection to a list of `CbcData` values.""" +type CbcDataConnection { + """A list of `CbcData` objects.""" + nodes: [CbcData]! """ - A list of edges which contains the `Announcement` and cursor to aid in pagination. + A list of edges which contains the `CbcData` and cursor to aid in pagination. """ - edges: [AnnouncementsEdge!]! + edges: [CbcDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """The count of *all* `CbcData` you could get from the connection.""" totalCount: Int! } -"""A `Announcement` edge in the connection.""" -type AnnouncementsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Announcement` at the end of the edge.""" - node: Announcement -} - -"""A connection to a list of `HistoryItem` values.""" -type HistoryItemsConnection { - """A list of `HistoryItem` objects.""" - nodes: [HistoryItem]! - +"""Table containing the json data for cbc applications""" +type CbcData implements Node { """ - A list of edges which contains the `HistoryItem` and cursor to aid in pagination. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - edges: [HistoryItemsEdge!]! + id: ID! - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Unique ID for the cbc_data""" + rowId: Int! - """The count of *all* `HistoryItem` you could get from the connection.""" - totalCount: Int! -} + """ID of the cbc application this cbc_data belongs to""" + cbcId: Int -""" -This is a type used to return records of history data in the application_history computed column -""" -type HistoryItem { - """Application Id.""" - applicationId: Int + """Column containing the project number the cbc application is from""" + projectNumber: Int + jsonData: JSON! + sharepointTimestamp: Datetime - """Timestamp of the operation recorded.""" - createdAt: Datetime + """created by user id""" + createdBy: Int - """Type of operation: INSERT/UPDATE/DELETE/TRUNCATE/SNAPSHOT.""" - op: Operation + """created at timestamp""" + createdAt: Datetime! - """Table name.""" - tableName: String + """updated by user id""" + updatedBy: Int - """ - Identifier that uniquely identifies a record by primary key [primary key + table_oid]. - """ - recordId: UUID + """updated at timestamp""" + updatedAt: Datetime! - """New record in Json format.""" - record: JSON + """archived by user id""" + archivedBy: Int - """Old record in Json format.""" - oldRecord: JSON + """archived at timestamp""" + archivedAt: Datetime - """ - Main object affected by the operation (i.e. status, or file name or RFI type). - """ - item: String + """Reads a single `Cbc` that is related to this `CbcData`.""" + cbcByCbcId: Cbc - """First Name of the user who performed the operation.""" - familyName: String + """Reads a single `Cbc` that is related to this `CbcData`.""" + cbcByProjectNumber: Cbc - """Last Name of the user who performed the operation.""" - givenName: String + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByCreatedBy: CcbcUser - """Session sub of the user who performed the operation.""" - sessionSub: String + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByUpdatedBy: CcbcUser - """User is an external analyst""" - externalAnalyst: Boolean + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByArchivedBy: CcbcUser } -"""A `HistoryItem` edge in the connection.""" -type HistoryItemsEdge { +"""A `CbcData` edge in the connection.""" +type CbcDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `HistoryItem` at the end of the edge.""" - node: HistoryItem + """The `CbcData` at the end of the edge.""" + node: CbcData +} + +"""Methods to use when ordering `CbcData`.""" +enum CbcDataOrderBy { + NATURAL + ID_ASC + ID_DESC + CBC_ID_ASC + CBC_ID_DESC + PROJECT_NUMBER_ASC + PROJECT_NUMBER_DESC + JSON_DATA_ASC + JSON_DATA_DESC + SHAREPOINT_TIMESTAMP_ASC + SHAREPOINT_TIMESTAMP_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A filter to be used against `HistoryItem` object types. All fields are combined with a logical ‘and.’ +A condition to be used against `CbcData` object types. All fields are tested +for equality and combined with a logical ‘and.’ """ -input HistoryItemFilter { - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `op` field.""" - op: OperationFilter - - """Filter by the object’s `tableName` field.""" - tableName: StringFilter - - """Filter by the object’s `recordId` field.""" - recordId: UUIDFilter +input CbcDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Filter by the object’s `record` field.""" - record: JSONFilter + """Checks for equality with the object’s `cbcId` field.""" + cbcId: Int - """Filter by the object’s `oldRecord` field.""" - oldRecord: JSONFilter + """Checks for equality with the object’s `projectNumber` field.""" + projectNumber: Int - """Filter by the object’s `item` field.""" - item: StringFilter + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Filter by the object’s `familyName` field.""" - familyName: StringFilter + """Checks for equality with the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: Datetime - """Filter by the object’s `givenName` field.""" - givenName: StringFilter + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """Filter by the object’s `sessionSub` field.""" - sessionSub: StringFilter + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Filter by the object’s `externalAnalyst` field.""" - externalAnalyst: BooleanFilter + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Checks for all expressions in this list.""" - and: [HistoryItemFilter!] + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Checks for any expressions in this list.""" - or: [HistoryItemFilter!] + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Negates the expression.""" - not: HistoryItemFilter + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CbcApplicationsByApplicationPendingChangeRequestCbcIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge!]! + edges: [CbcApplicationsByApplicationPendingChangeRequestCbcIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatusType` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge { +type CbcApplicationsByApplicationPendingChangeRequestCbcIdAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -38538,70 +39496,32 @@ type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! -} - -"""Methods to use when ordering `ApplicationStatusType`.""" -enum ApplicationStatusTypesOrderBy { - NATURAL - NAME_ASC - NAME_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - VISIBLE_BY_APPLICANT_ASC - VISIBLE_BY_APPLICANT_DESC - STATUS_ORDER_ASC - STATUS_ORDER_DESC - VISIBLE_BY_ANALYST_ASC - VISIBLE_BY_ANALYST_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationStatusType` object types. All fields -are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationStatusTypeCondition { - """Checks for equality with the object’s `name` field.""" - name: String - - """Checks for equality with the object’s `description` field.""" - description: String - - """Checks for equality with the object’s `visibleByApplicant` field.""" - visibleByApplicant: Boolean - - """Checks for equality with the object’s `statusOrder` field.""" - statusOrder: Int - - """Checks for equality with the object’s `visibleByAnalyst` field.""" - visibleByAnalyst: Boolean + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection { +type CbcCcbcUsersByApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge!]! + edges: [CbcCcbcUsersByApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38611,17 +39531,19 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge { +type CbcCcbcUsersByApplicationPendingChangeRequestCbcIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38640,32 +39562,32 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection { +type CbcCcbcUsersByApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge!]! + edges: [CbcCcbcUsersByApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38675,17 +39597,19 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge { +type CbcCcbcUsersByApplicationPendingChangeRequestCbcIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38704,32 +39628,32 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection { +type CbcCcbcUsersByApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [CbcCcbcUsersByApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38739,17 +39663,19 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge { +type CbcCcbcUsersByApplicationPendingChangeRequestCbcIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -38768,98 +39694,149 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } -""" -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. -""" -type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge!]! + edges: [CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Cbc` at the end of the edge.""" + node: Cbc + + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection! +} + +"""Methods to use when ordering `Cbc`.""" +enum CbcsOrderBy { + NATURAL + ID_ASC + ID_DESC + PROJECT_NUMBER_ASC + PROJECT_NUMBER_DESC + SHAREPOINT_TIMESTAMP_ASC + SHAREPOINT_TIMESTAMP_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + """ -A `ApplicationStatus` edge in the connection, with data from `Attachment`. +A condition to be used against `Cbc` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus +input CbcCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `projectNumber` field.""" + projectNumber: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AttachmentCondition + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `CbcData`. """ -type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection { +type CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38868,16 +39845,16 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnecti totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38896,32 +39873,32 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `CbcData`. """ -type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection { +type CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38930,16 +39907,16 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnecti totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38958,32 +39935,32 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `CbcData`. """ -type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection { +type CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38992,16 +39969,16 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnect totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -39020,84 +39997,48 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! -} - -""" -A connection to a list of `FormData` values, with data from `ApplicationFormData`. -""" -type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection { - """A list of `FormData` objects.""" - nodes: [FormData]! - - """ - A list of edges which contains the `FormData`, info from the `ApplicationFormData`, and the cursor to aid in pagination. - """ - edges: [ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `FormData` you could get from the connection.""" - totalCount: Int! -} - -""" -A `FormData` edge in the connection, with data from `ApplicationFormData`. -""" -type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `FormData` at the end of the edge.""" - node: FormData + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. -""" -type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge!]! + edges: [CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -""" -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `Cbc` at the end of the edge.""" + node: Cbc - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByAnalystId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -39116,99 +40057,32 @@ type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! -} - -"""Methods to use when ordering `Analyst`.""" -enum AnalystsOrderBy { - NATURAL - ID_ASC - ID_DESC - GIVEN_NAME_ASC - GIVEN_NAME_DESC - FAMILY_NAME_ASC - FAMILY_NAME_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - ACTIVE_ASC - ACTIVE_DESC - EMAIL_ASC - EMAIL_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `Analyst` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input AnalystCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `givenName` field.""" - givenName: String - - """Checks for equality with the object’s `familyName` field.""" - familyName: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime - - """Checks for equality with the object’s `active` field.""" - active: Boolean - - """Checks for equality with the object’s `email` field.""" - email: String + filter: CbcDataFilter + ): CbcDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `CbcData`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection { +type CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39217,20 +40091,16 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyTo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39249,32 +40119,32 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `CbcData`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection { +type CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39283,20 +40153,16 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyTo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39315,32 +40181,32 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `CbcData`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection { +type CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39349,20 +40215,16 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyT totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -39381,49 +40243,175 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `RfiData` values, with data from `ApplicationRfiData`. -""" -type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection { - """A list of `RfiData` objects.""" - nodes: [RfiData]! +"""A `ApplicationPendingChangeRequest` edge in the connection.""" +type ApplicationPendingChangeRequestsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationPendingChangeRequest` at the end of the edge.""" + node: ApplicationPendingChangeRequest +} + +"""A connection to a list of `Announcement` values.""" +type AnnouncementsConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `RfiData`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement` and cursor to aid in pagination. """ - edges: [ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge!]! + edges: [AnnouncementsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `RfiData` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" + totalCount: Int! +} + +"""A `Announcement` edge in the connection.""" +type AnnouncementsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Announcement` at the end of the edge.""" + node: Announcement +} + +"""A connection to a list of `HistoryItem` values.""" +type HistoryItemsConnection { + """A list of `HistoryItem` objects.""" + nodes: [HistoryItem]! + + """ + A list of edges which contains the `HistoryItem` and cursor to aid in pagination. + """ + edges: [HistoryItemsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `HistoryItem` you could get from the connection.""" totalCount: Int! } """ -A `RfiData` edge in the connection, with data from `ApplicationRfiData`. +This is a type used to return records of history data in the application_history computed column """ -type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge { +type HistoryItem { + """Application Id.""" + applicationId: Int + + """Timestamp of the operation recorded.""" + createdAt: Datetime + + """Type of operation: INSERT/UPDATE/DELETE/TRUNCATE/SNAPSHOT.""" + op: Operation + + """Table name.""" + tableName: String + + """ + Identifier that uniquely identifies a record by primary key [primary key + table_oid]. + """ + recordId: UUID + + """New record in Json format.""" + record: JSON + + """Old record in Json format.""" + oldRecord: JSON + + """ + Main object affected by the operation (i.e. status, or file name or RFI type). + """ + item: String + + """First Name of the user who performed the operation.""" + familyName: String + + """Last Name of the user who performed the operation.""" + givenName: String + + """Session sub of the user who performed the operation.""" + sessionSub: String + + """User is an external analyst""" + externalAnalyst: Boolean +} + +"""A `HistoryItem` edge in the connection.""" +type HistoryItemsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `RfiData` at the end of the edge.""" - node: RfiData + """The `HistoryItem` at the end of the edge.""" + node: HistoryItem +} + +""" +A filter to be used against `HistoryItem` object types. All fields are combined with a logical ‘and.’ +""" +input HistoryItemFilter { + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter + + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter + + """Filter by the object’s `op` field.""" + op: OperationFilter + + """Filter by the object’s `tableName` field.""" + tableName: StringFilter + + """Filter by the object’s `recordId` field.""" + recordId: UUIDFilter + + """Filter by the object’s `record` field.""" + record: JSONFilter + + """Filter by the object’s `oldRecord` field.""" + oldRecord: JSONFilter + + """Filter by the object’s `item` field.""" + item: StringFilter + + """Filter by the object’s `familyName` field.""" + familyName: StringFilter + + """Filter by the object’s `givenName` field.""" + givenName: StringFilter + + """Filter by the object’s `sessionSub` field.""" + sessionSub: StringFilter + + """Filter by the object’s `externalAnalyst` field.""" + externalAnalyst: BooleanFilter + + """Checks for all expressions in this list.""" + and: [HistoryItemFilter!] + + """Checks for any expressions in this list.""" + or: [HistoryItemFilter!] + + """Negates the expression.""" + not: HistoryItemFilter } """ @@ -39699,198 +40687,6 @@ type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdg ): AssessmentDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. -""" -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. - """ - edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. -""" -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPackageCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. -""" -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. - """ - edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. -""" -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPackageCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. -""" -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. - """ - edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. -""" -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationPackageCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! -} - """ A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ @@ -40177,7 +40973,8 @@ enum GisDataOrderBy { } """ -A condition to be used against `GisData` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `GisData` object types. All fields are tested +for equality and combined with a logical ‘and.’ """ input GisDataCondition { """Checks for equality with the object’s `rowId` field.""" @@ -40272,14 +41069,78 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40291,7 +41152,7 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToMany """ A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -40299,7 +41160,7 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToMany node: CcbcUser """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -40334,16 +41195,16 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToMany } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40353,17 +41214,19 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40382,146 +41245,98 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Flag to identify either announcement is primary or secondary""" - isPrimary: Boolean + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Column describing the operation (created, updated, deleted) for context on the history page + Reads and enables pagination through a set of `ProjectInformationData`. """ - historyOperation: String -} - -"""Methods to use when ordering `Announcement`.""" -enum AnnouncementsOrderBy { - NATURAL - ID_ASC - ID_DESC - CCBC_NUMBERS_ASC - CCBC_NUMBERS_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `Announcement` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input AnnouncementCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `ccbcNumbers` field.""" - ccbcNumbers: String + projectInformationDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ProjectInformationDataCondition - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40531,9 +41346,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -40541,9 +41356,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnnouncementsByCreatedBy( + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -40562,32 +41377,32 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40597,9 +41412,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -40607,9 +41422,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationClaimsData`. """ - applicationAnnouncementsByUpdatedBy( + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40628,32 +41443,32 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40663,9 +41478,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -40673,9 +41488,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationClaimsData`. """ - applicationAnnouncementsByArchivedBy( + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40694,32 +41509,32 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40729,17 +41544,19 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsData`. + """ + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -40758,32 +41575,32 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40793,17 +41610,19 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40822,32 +41641,32 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40857,17 +41676,19 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40886,32 +41707,32 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40921,9 +41742,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -40931,9 +41752,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - projectInformationDataByCreatedBy( + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -40952,32 +41773,32 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40987,9 +41808,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -40997,9 +41818,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - projectInformationDataByUpdatedBy( + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41018,32 +41839,34 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41053,9 +41876,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -41063,9 +41886,9 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ProjectInformationData`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - projectInformationDataByArchivedBy( + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41084,32 +41907,34 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41119,17 +41944,19 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -41148,32 +41975,34 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41183,17 +42012,19 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41212,32 +42043,34 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityReportExcelData`. + """ + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41247,17 +42080,19 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41276,32 +42111,34 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityReportExcelData`. + """ + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41311,9 +42148,9 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -41321,9 +42158,9 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationCommunityProgressReportDataByCreatedBy( + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -41343,33 +42180,33 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn after: Cursor """ - The method to use when ordering `ApplicationCommunityProgressReportData`. + The method to use when ordering `ApplicationCommunityReportExcelData`. """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41379,9 +42216,9 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -41389,9 +42226,9 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationCommunityProgressReportDataByUpdatedBy( + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41410,34 +42247,32 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41447,9 +42282,9 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -41457,9 +42292,9 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationCommunityProgressReportDataByArchivedBy( + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41478,34 +42313,32 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41515,9 +42348,9 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCr } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -41525,9 +42358,9 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCr node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationCommunityReportExcelDataByCreatedBy( + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -41546,32 +42379,32 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCr """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41581,9 +42414,9 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUp } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -41591,9 +42424,9 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUp node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationCommunityReportExcelDataByUpdatedBy( + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41612,32 +42445,32 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUp """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41647,9 +42480,9 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndAr } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -41657,9 +42490,9 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndAr node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationCommunityReportExcelDataByArchivedBy( + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41678,32 +42511,32 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndAr """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41713,17 +42546,19 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToM } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -41742,32 +42577,32 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41777,17 +42612,19 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToM } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41806,32 +42643,32 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41841,17 +42678,19 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41870,32 +42709,32 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41905,9 +42744,9 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -41915,9 +42754,9 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationClaimsExcelDataByCreatedBy( + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -41936,32 +42775,32 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41971,19 +42810,17 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42002,32 +42839,32 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42037,19 +42874,17 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByM } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42068,32 +42903,32 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42103,19 +42938,17 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -42134,32 +42967,32 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42169,19 +43002,17 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42200,32 +43031,32 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42235,19 +43066,17 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42266,32 +43095,32 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42301,19 +43130,17 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -42332,54 +43159,50 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. -""" -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -42398,32 +43221,110 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: NotificationFilter + ): NotificationsConnection! +} + +"""Methods to use when ordering `EmailRecord`.""" +enum EmailRecordsOrderBy { + NATURAL + ID_ASC + ID_DESC + TO_EMAIL_ASC + TO_EMAIL_DESC + CC_EMAIL_ASC + CC_EMAIL_DESC + SUBJECT_ASC + SUBJECT_DESC + BODY_ASC + BODY_DESC + MESSAGE_ID_ASC + MESSAGE_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A condition to be used against `EmailRecord` object types. All fields are tested +for equality and combined with a logical ‘and.’ """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection { +input EmailRecordCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `toEmail` field.""" + toEmail: String + + """Checks for equality with the object’s `ccEmail` field.""" + ccEmail: String + + """Checks for equality with the object’s `subject` field.""" + subject: String + + """Checks for equality with the object’s `body` field.""" + body: String + + """Checks for equality with the object’s `messageId` field.""" + messageId: String + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42432,20 +43333,16 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchived totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. -""" -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42464,32 +43361,32 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchived """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42498,20 +43395,16 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreated totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42530,32 +43423,32 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreated """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42564,20 +43457,16 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdated totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -42596,32 +43485,32 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdated """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42631,19 +43520,17 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchive } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42662,32 +43549,32 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchive """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42697,19 +43584,17 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42728,32 +43613,32 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42763,19 +43648,17 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -42794,32 +43677,32 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42831,7 +43714,7 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyT """ A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -42841,7 +43724,7 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyT """ Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationProjectTypesByArchivedBy( + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42876,34 +43759,38 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyT } """ -A connection to a list of `EmailRecord` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +""" +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42922,110 +43809,32 @@ type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! -} - -"""Methods to use when ordering `EmailRecord`.""" -enum EmailRecordsOrderBy { - NATURAL - ID_ASC - ID_DESC - TO_EMAIL_ASC - TO_EMAIL_DESC - CC_EMAIL_ASC - CC_EMAIL_DESC - SUBJECT_ASC - SUBJECT_DESC - BODY_ASC - BODY_DESC - MESSAGE_ID_ASC - MESSAGE_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `EmailRecord` object types. All fields are tested -for equality and combined with a logical ‘and.’ -""" -input EmailRecordCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `toEmail` field.""" - toEmail: String - - """Checks for equality with the object’s `ccEmail` field.""" - ccEmail: String - - """Checks for equality with the object’s `subject` field.""" - subject: String - - """Checks for equality with the object’s `body` field.""" - body: String - - """Checks for equality with the object’s `messageId` field.""" - messageId: String - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43034,16 +43843,20 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnec totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +""" +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -43062,50 +43875,54 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge { +""" +A `ApplicationStatus` edge in the connection, with data from `Attachment`. +""" +type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -43124,32 +43941,32 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43158,16 +43975,16 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConne totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43186,32 +44003,32 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43220,20 +44037,16 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreate totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43252,32 +44065,32 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreate """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43286,20 +44099,16 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdate totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -43318,54 +44127,54 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdate """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge { +type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Analyst` at the end of the edge.""" + node: Analyst """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationPendingChangeRequestsByArchivedBy( + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -43384,41 +44193,99 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchiv """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } -"""A `Application` edge in the connection.""" -type ApplicationsEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""Methods to use when ordering `Analyst`.""" +enum AnalystsOrderBy { + NATURAL + ID_ASC + ID_DESC + GIVEN_NAME_ASC + GIVEN_NAME_DESC + FAMILY_NAME_ASC + FAMILY_NAME_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + ACTIVE_ASC + ACTIVE_DESC + EMAIL_ASC + EMAIL_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """The `Application` at the end of the edge.""" - node: Application +""" +A condition to be used against `Analyst` object types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input AnalystCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `givenName` field.""" + givenName: String + + """Checks for equality with the object’s `familyName` field.""" + familyName: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `active` field.""" + active: Boolean + + """Checks for equality with the object’s `email` field.""" + email: String } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43427,16 +44294,20 @@ type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43455,32 +44326,32 @@ type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43489,16 +44360,20 @@ type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43517,32 +44392,32 @@ type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43551,16 +44426,20 @@ type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -43579,238 +44458,49 @@ type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! -} - -"""A `Intake` edge in the connection.""" -type IntakesEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Intake` at the end of the edge.""" - node: Intake -} - -"""A connection to a list of `RecordVersion` values.""" -type RecordVersionsConnection { - """A list of `RecordVersion` objects.""" - nodes: [RecordVersion]! - - """ - A list of edges which contains the `RecordVersion` and cursor to aid in pagination. - """ - edges: [RecordVersionsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `RecordVersion` you could get from the connection.""" - totalCount: Int! -} - -""" -Table for tracking history records on tables that auditing is enabled on -""" -type RecordVersion implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Primary key and unique identifier""" - rowId: BigInt! - - """The id of the record the history record is associated with""" - recordId: UUID - - """ - The id of the previous version of the record the history record is associated with - """ - oldRecordId: UUID - - """The operation performed on the record (created, updated, deleted)""" - op: Operation! - - """The timestamp of the history record""" - ts: Datetime! - - """The oid of the table the record is associated with""" - tableOid: BigFloat! - - """The schema of the table the record is associated with""" - tableSchema: String! - - """The name of the table the record is associated with""" - tableName: String! - - """The user that created the record""" - createdBy: Int - - """The timestamp of when the record was created""" - createdAt: Datetime! - - """The record in JSON format""" - record: JSON - - """The previous version of the record in JSON format""" - oldRecord: JSON - - """Reads a single `CcbcUser` that is related to this `RecordVersion`.""" - ccbcUserByCreatedBy: CcbcUser -} - -"""A `RecordVersion` edge in the connection.""" -type RecordVersionsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `RecordVersion` at the end of the edge.""" - node: RecordVersion -} - -"""Methods to use when ordering `RecordVersion`.""" -enum RecordVersionsOrderBy { - NATURAL - ID_ASC - ID_DESC - RECORD_ID_ASC - RECORD_ID_DESC - OLD_RECORD_ID_ASC - OLD_RECORD_ID_DESC - OP_ASC - OP_DESC - TS_ASC - TS_DESC - TABLE_OID_ASC - TABLE_OID_DESC - TABLE_SCHEMA_ASC - TABLE_SCHEMA_DESC - TABLE_NAME_ASC - TABLE_NAME_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - RECORD_ASC - RECORD_DESC - OLD_RECORD_ASC - OLD_RECORD_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A condition to be used against `RecordVersion` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -input RecordVersionCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: BigInt - - """Checks for equality with the object’s `recordId` field.""" - recordId: UUID - - """Checks for equality with the object’s `oldRecordId` field.""" - oldRecordId: UUID - - """Checks for equality with the object’s `op` field.""" - op: Operation - - """Checks for equality with the object’s `ts` field.""" - ts: Datetime - - """Checks for equality with the object’s `tableOid` field.""" - tableOid: BigFloat - - """Checks for equality with the object’s `tableSchema` field.""" - tableSchema: String - - """Checks for equality with the object’s `tableName` field.""" - tableName: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `record` field.""" - record: JSON - - """Checks for equality with the object’s `oldRecord` field.""" - oldRecord: JSON -} - -"""A connection to a list of `GisData` values.""" -type GisDataConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `GisData` and cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [GisDataEdge!]! + edges: [ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } -"""A `GisData` edge in the connection.""" -type GisDataEdge { +""" +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData -} - -"""A connection to a list of `CbcProject` values.""" -type CbcProjectsConnection { - """A list of `CbcProject` objects.""" - nodes: [CbcProject]! - - """ - A list of edges which contains the `CbcProject` and cursor to aid in pagination. - """ - edges: [CbcProjectsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CbcProject` you could get from the connection.""" - totalCount: Int! -} - -"""Table containing the data imported from the CBC projects excel file""" -type CbcProject implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the row""" - rowId: Int! - - """The data imported from the excel for that cbc project""" - jsonData: JSON! - - """The timestamp of the last time the data was updated from sharepoint""" - sharepointTimestamp: Datetime + """The `Announcement` at the end of the edge.""" + node: Announcement """created by user id""" createdBy: Int @@ -43830,34 +44520,24 @@ type CbcProject implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `CcbcUser` that is related to this `CbcProject`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `CbcProject`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `CbcProject`.""" - ccbcUserByArchivedBy: CcbcUser -} - -"""A `CbcProject` edge in the connection.""" -type CbcProjectsEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Flag to identify either announcement is primary or secondary""" + isPrimary: Boolean - """The `CbcProject` at the end of the edge.""" - node: CbcProject + """ + Column describing the operation (created, updated, deleted) for context on the history page + """ + historyOperation: String } -"""Methods to use when ordering `CbcProject`.""" -enum CbcProjectsOrderBy { +"""Methods to use when ordering `Announcement`.""" +enum AnnouncementsOrderBy { NATURAL ID_ASC ID_DESC + CCBC_NUMBERS_ASC + CCBC_NUMBERS_DESC JSON_DATA_ASC JSON_DATA_DESC - SHAREPOINT_TIMESTAMP_ASC - SHAREPOINT_TIMESTAMP_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -43875,19 +44555,19 @@ enum CbcProjectsOrderBy { } """ -A condition to be used against `CbcProject` object types. All fields are tested -for equality and combined with a logical ‘and.’ +A condition to be used against `Announcement` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input CbcProjectCondition { +input AnnouncementCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int + """Checks for equality with the object’s `ccbcNumbers` field.""" + ccbcNumbers: String + """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON - """Checks for equality with the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: Datetime - """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -43907,96 +44587,171 @@ input CbcProjectCondition { archivedAt: Datetime } -"""A connection to a list of `EmailRecord` values.""" -type EmailRecordsConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +""" +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `EmailRecord` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [EmailRecordsEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection.""" -type EmailRecordsEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncementCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } -"""A connection to a list of `Cbc` values.""" -type CbcsConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +""" +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CbcsEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -Table containing the data imported from the CBC projects excel file, by rows +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type Cbc implements Node { +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - id: ID! + applicationAnnouncementsByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Unique ID for the row""" - rowId: Int! + """Only read the last `n` values of the set.""" + last: Int - """The project number, unique for each project""" - projectNumber: 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 timestamp of the last time the data was updated from sharepoint""" - sharepointTimestamp: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """created by user id""" - createdBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """created at timestamp""" - createdAt: Datetime! + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] - """updated by user id""" - updatedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncementCondition - """updated at timestamp""" - updatedAt: Datetime! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! +} - """archived by user id""" - archivedBy: Int +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +""" +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """archived at timestamp""" - archivedAt: Datetime + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge!]! - """Reads a single `CcbcUser` that is related to this `Cbc`.""" - ccbcUserByCreatedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Reads a single `CcbcUser` that is related to this `Cbc`.""" - ccbcUserByUpdatedBy: CcbcUser + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """Reads a single `CcbcUser` that is related to this `Cbc`.""" - ccbcUserByArchivedBy: CcbcUser +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcId( + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44015,22 +44770,114 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! +} - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByProjectNumber( +""" +A connection to a list of `FormData` values, with data from `ApplicationFormData`. +""" +type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection { + """A list of `FormData` objects.""" + nodes: [FormData]! + + """ + A list of edges which contains the `FormData`, info from the `ApplicationFormData`, and the cursor to aid in pagination. + """ + edges: [ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `FormData` you could get from the connection.""" + totalCount: Int! +} + +""" +A `FormData` edge in the connection, with data from `ApplicationFormData`. +""" +type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `FormData` at the end of the edge.""" + node: FormData +} + +""" +A connection to a list of `RfiData` values, with data from `ApplicationRfiData`. +""" +type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection { + """A list of `RfiData` objects.""" + nodes: [RfiData]! + + """ + A list of edges which contains the `RfiData`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. + """ + edges: [ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `RfiData` you could get from the connection.""" + totalCount: Int! +} + +""" +A `RfiData` edge in the connection, with data from `ApplicationRfiData`. +""" +type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `RfiData` at the end of the edge.""" + node: RfiData +} + +""" +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +""" +type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! + + """ + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ + totalCount: Int! +} + +""" +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -44049,22 +44896,90 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! +} - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataCbcIdAndProjectNumber( +"""Methods to use when ordering `ApplicationStatusType`.""" +enum ApplicationStatusTypesOrderBy { + NATURAL + NAME_ASC + NAME_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + VISIBLE_BY_APPLICANT_ASC + VISIBLE_BY_APPLICANT_DESC + STATUS_ORDER_ASC + STATUS_ORDER_DESC + VISIBLE_BY_ANALYST_ASC + VISIBLE_BY_ANALYST_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ApplicationStatusType` object types. All fields +are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationStatusTypeCondition { + """Checks for equality with the object’s `name` field.""" + name: String + + """Checks for equality with the object’s `description` field.""" + description: String + + """Checks for equality with the object’s `visibleByApplicant` field.""" + visibleByApplicant: Boolean + + """Checks for equality with the object’s `statusOrder` field.""" + statusOrder: Int + + """Checks for equality with the object’s `visibleByAnalyst` field.""" + visibleByAnalyst: Boolean +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44083,22 +44998,52 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcFilter - ): CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCbcIdAndCreatedBy( +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44117,22 +45062,52 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCbcIdAndUpdatedBy( +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44151,22 +45126,54 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataCbcIdAndArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44185,56 +45192,54 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Cbc`.""" - cbcsByCbcDataProjectNumberAndCbcId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge!]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Information to aid in pagination.""" + pageInfo: PageInfo! - """The method to use when ordering `Cbc`.""" - orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcCondition +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcFilter - ): CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyConnection! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataProjectNumberAndCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44253,22 +45258,54 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataProjectNumberAndUpdatedBy( +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44287,22 +45324,54 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcDataProjectNumberAndArchivedBy( +""" +A connection to a list of `Cbc` values, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCbcsByApplicationPendingChangeRequestApplicationIdAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! + + """ + A list of edges which contains the `Cbc`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + """ + edges: [ApplicationCbcsByApplicationPendingChangeRequestApplicationIdAndCbcIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Cbc` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Cbc` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCbcsByApplicationPendingChangeRequestApplicationIdAndCbcIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Cbc` at the end of the edge.""" + node: Cbc + + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -44321,54 +45390,61 @@ type Cbc implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } -"""A connection to a list of `CbcData` values.""" -type CbcDataConnection { - """A list of `CbcData` objects.""" - nodes: [CbcData]! +"""A `Application` edge in the connection.""" +type ApplicationsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application +} + +"""A connection to a list of `CbcProject` values.""" +type CbcProjectsConnection { + """A list of `CbcProject` objects.""" + nodes: [CbcProject]! """ - A list of edges which contains the `CbcData` and cursor to aid in pagination. + A list of edges which contains the `CbcProject` and cursor to aid in pagination. """ - edges: [CbcDataEdge!]! + edges: [CbcProjectsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CbcData` you could get from the connection.""" + """The count of *all* `CbcProject` you could get from the connection.""" totalCount: Int! } -"""Table containing the json data for cbc applications""" -type CbcData implements Node { +"""Table containing the data imported from the CBC projects excel file""" +type CbcProject implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the cbc_data""" + """Unique ID for the row""" rowId: Int! - """ID of the cbc application this cbc_data belongs to""" - cbcId: Int - - """Column containing the project number the cbc application is from""" - projectNumber: Int + """The data imported from the excel for that cbc project""" jsonData: JSON! + + """The timestamp of the last time the data was updated from sharepoint""" sharepointTimestamp: Datetime """created by user id""" @@ -44389,40 +45465,30 @@ type CbcData implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `Cbc` that is related to this `CbcData`.""" - cbcByCbcId: Cbc - - """Reads a single `Cbc` that is related to this `CbcData`.""" - cbcByProjectNumber: Cbc - - """Reads a single `CcbcUser` that is related to this `CbcData`.""" + """Reads a single `CcbcUser` that is related to this `CbcProject`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `CbcData`.""" + """Reads a single `CcbcUser` that is related to this `CbcProject`.""" ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `CbcData`.""" + """Reads a single `CcbcUser` that is related to this `CbcProject`.""" ccbcUserByArchivedBy: CcbcUser } -"""A `CbcData` edge in the connection.""" -type CbcDataEdge { +"""A `CbcProject` edge in the connection.""" +type CbcProjectsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CbcData` at the end of the edge.""" - node: CbcData + """The `CbcProject` at the end of the edge.""" + node: CbcProject } -"""Methods to use when ordering `CbcData`.""" -enum CbcDataOrderBy { +"""Methods to use when ordering `CbcProject`.""" +enum CbcProjectsOrderBy { NATURAL ID_ASC ID_DESC - CBC_ID_ASC - CBC_ID_DESC - PROJECT_NUMBER_ASC - PROJECT_NUMBER_DESC JSON_DATA_ASC JSON_DATA_DESC SHAREPOINT_TIMESTAMP_ASC @@ -44444,18 +45510,13 @@ enum CbcDataOrderBy { } """ -A condition to be used against `CbcData` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `CbcProject` object types. All fields are tested +for equality and combined with a logical ‘and.’ """ -input CbcDataCondition { +input CbcProjectCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `cbcId` field.""" - cbcId: Int - - """Checks for equality with the object’s `projectNumber` field.""" - projectNumber: Int - """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON @@ -44481,450 +45542,289 @@ input CbcDataCondition { archivedAt: Datetime } -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! +"""A connection to a list of `CcbcUser` values.""" +type CcbcUsersConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser` and cursor to aid in pagination. """ - edges: [CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyEdge!]! + edges: [CcbcUsersEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Cbc` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyEdge { +"""A `CcbcUser` edge in the connection.""" +type CcbcUsersEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc - - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByProjectNumber( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcDataFilter - ): CbcDataConnection! -} - -"""Methods to use when ordering `Cbc`.""" -enum CbcsOrderBy { - NATURAL - ID_ASC - ID_DESC - PROJECT_NUMBER_ASC - PROJECT_NUMBER_DESC - SHAREPOINT_TIMESTAMP_ASC - SHAREPOINT_TIMESTAMP_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `Cbc` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input CbcCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `projectNumber` field.""" - projectNumber: Int - - """Checks for equality with the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: Datetime - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `GisData` values.""" +type GisDataConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `GisData` and cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyEdge!]! + edges: [GisDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `GisData` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyEdge { +"""A `GisData` edge in the connection.""" +type GisDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcDataFilter - ): CbcDataConnection! + """The `GisData` at the end of the edge.""" + node: GisData } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `EmailRecord` values.""" +type EmailRecordsConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord` and cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyEdge!]! + edges: [EmailRecordsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyEdge { +"""A `EmailRecord` edge in the connection.""" +type EmailRecordsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcDataFilter - ): CbcDataConnection! + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `RecordVersion` values.""" +type RecordVersionsConnection { + """A list of `RecordVersion` objects.""" + nodes: [RecordVersion]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `RecordVersion` and cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyEdge!]! + edges: [RecordVersionsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `RecordVersion` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser +""" +Table for tracking history records on tables that auditing is enabled on +""" +type RecordVersion implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Primary key and unique identifier""" + rowId: BigInt! - """Only read the last `n` values of the set.""" - last: Int + """The id of the record the history record is associated with""" + recordId: UUID - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + The id of the previous version of the record the history record is associated with + """ + oldRecordId: UUID - """Read all values in the set before (above) this cursor.""" - before: Cursor + """The operation performed on the record (created, updated, deleted)""" + op: Operation! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """The timestamp of the history record""" + ts: Datetime! - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The oid of the table the record is associated with""" + tableOid: BigFloat! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcDataCondition + """The schema of the table the record is associated with""" + tableSchema: String! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcDataFilter - ): CbcDataConnection! -} + """The name of the table the record is associated with""" + tableName: String! -"""A connection to a list of `Cbc` values, with data from `CbcData`.""" -type CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyConnection { - """A list of `Cbc` objects.""" - nodes: [Cbc]! + """The user that created the record""" + createdBy: Int - """ - A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. - """ - edges: [CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyEdge!]! + """The timestamp of when the record was created""" + createdAt: Datetime! - """Information to aid in pagination.""" - pageInfo: PageInfo! + """The record in JSON format""" + record: JSON - """The count of *all* `Cbc` you could get from the connection.""" - totalCount: Int! + """The previous version of the record in JSON format""" + oldRecord: JSON + + """Reads a single `CcbcUser` that is related to this `RecordVersion`.""" + ccbcUserByCreatedBy: CcbcUser } -"""A `Cbc` edge in the connection, with data from `CbcData`.""" -type CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyEdge { +"""A `RecordVersion` edge in the connection.""" +type RecordVersionsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Cbc` at the end of the edge.""" - node: Cbc + """The `RecordVersion` at the end of the edge.""" + node: RecordVersion +} - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCbcId( - """Only read the first `n` values of the set.""" - first: Int +"""Methods to use when ordering `RecordVersion`.""" +enum RecordVersionsOrderBy { + NATURAL + ID_ASC + ID_DESC + RECORD_ID_ASC + RECORD_ID_DESC + OLD_RECORD_ID_ASC + OLD_RECORD_ID_DESC + OP_ASC + OP_DESC + TS_ASC + TS_DESC + TABLE_OID_ASC + TABLE_OID_DESC + TABLE_SCHEMA_ASC + TABLE_SCHEMA_DESC + TABLE_NAME_ASC + TABLE_NAME_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + RECORD_ASC + RECORD_DESC + OLD_RECORD_ASC + OLD_RECORD_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `RecordVersion` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input RecordVersionCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: BigInt - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `recordId` field.""" + recordId: UUID - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `oldRecordId` field.""" + oldRecordId: UUID - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `op` field.""" + op: Operation - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `ts` field.""" + ts: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcDataCondition + """Checks for equality with the object’s `tableOid` field.""" + tableOid: BigFloat - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcDataFilter - ): CbcDataConnection! + """Checks for equality with the object’s `tableSchema` field.""" + tableSchema: String + + """Checks for equality with the object’s `tableName` field.""" + tableName: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `record` field.""" + record: JSON + + """Checks for equality with the object’s `oldRecord` field.""" + oldRecord: JSON } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values.""" +type CbcsConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc` and cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyEdge!]! + edges: [CbcsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyEdge { +"""A `Cbc` edge in the connection.""" +type CbcsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CbcDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CbcDataFilter - ): CbcDataConnection! + """The `Cbc` at the end of the edge.""" + node: Cbc } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Intake` values, with data from `Application`. +""" +type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Intake` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyEdge { +"""A `Intake` edge in the connection, with data from `Application`.""" +type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Intake` at the end of the edge.""" + node: Intake - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -44943,30 +45843,32 @@ type CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Application`. +""" +type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44975,16 +45877,16 @@ type CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" -type CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcData`.""" - cbcDataByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45003,41 +45905,32 @@ type CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcData`.""" - orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcDataFilter - ): CbcDataConnection! -} - -"""A `Cbc` edge in the connection.""" -type CbcsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Cbc` at the end of the edge.""" - node: Cbc + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45046,16 +45939,16 @@ type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45074,50 +45967,50 @@ type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `Intake` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Intake` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { +"""A `Intake` edge in the connection, with data from `Application`.""" +type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Intake` at the end of the edge.""" + node: Intake - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -45136,32 +46029,32 @@ type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45170,16 +46063,16 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45198,32 +46091,32 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45232,16 +46125,16 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45260,50 +46153,50 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `Intake` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Intake` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge { +"""A `Intake` edge in the connection, with data from `Application`.""" +type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Intake` at the end of the edge.""" + node: Intake - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -45322,32 +46215,32 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45356,16 +46249,16 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45384,30 +46277,32 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Application`. +""" +type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45416,16 +46311,16 @@ type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45444,48 +46339,52 @@ type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -45504,50 +46403,52 @@ type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `GaplessCounter` values, with data from `Intake`. +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. """ -type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection { - """A list of `GaplessCounter` objects.""" - nodes: [GaplessCounter]! +type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge!]! + edges: [CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GaplessCounter` you could get from the connection.""" + """The count of *all* `AssessmentType` you could get from the connection.""" totalCount: Int! } -"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" -type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge { +""" +A `AssessmentType` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GaplessCounter` at the end of the edge.""" - node: GaplessCounter + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -45566,53 +46467,32 @@ type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! -} - -"""Methods to use when ordering `GaplessCounter`.""" -enum GaplessCountersOrderBy { - NATURAL - ID_ASC - ID_DESC - COUNTER_ASC - COUNTER_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A condition to be used against `GaplessCounter` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -input GaplessCounterCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `counter` field.""" - counter: Int -} - -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45621,16 +46501,16 @@ type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45649,30 +46529,32 @@ type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45681,16 +46563,16 @@ type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45709,50 +46591,52 @@ type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `GaplessCounter` values, with data from `Intake`. +A connection to a list of `Application` values, with data from `AssessmentData`. """ -type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection { - """A list of `GaplessCounter` objects.""" - nodes: [GaplessCounter]! +type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GaplessCounter` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" -type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GaplessCounter` at the end of the edge.""" - node: GaplessCounter + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -45771,48 +46655,52 @@ type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `AssessmentType` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge { +""" +A `AssessmentType` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -45831,30 +46719,32 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45863,16 +46753,16 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45891,50 +46781,50 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `GaplessCounter` values, with data from `Intake`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection { - """A list of `GaplessCounter` objects.""" - nodes: [GaplessCounter]! +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GaplessCounter` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" -type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GaplessCounter` at the end of the edge.""" - node: GaplessCounter + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45953,50 +46843,52 @@ type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `Intake` values, with data from `Application`. +A connection to a list of `Application` values, with data from `AssessmentData`. """ -type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! +type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Intake` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `Intake` edge in the connection, with data from `Application`.""" -type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Intake` at the end of the edge.""" - node: Intake + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -46015,50 +46907,52 @@ type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `AssessmentType` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge { +""" +A `AssessmentType` edge in the connection, with data from `AssessmentData`. +""" +type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """Reads and enables pagination through a set of `Application`.""" - applicationsByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -46077,32 +46971,32 @@ type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46111,16 +47005,16 @@ type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46139,50 +47033,50 @@ type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `Intake` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Intake` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Intake` edge in the connection, with data from `Application`.""" -type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Intake` at the end of the edge.""" - node: Intake + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46201,32 +47095,32 @@ type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46235,16 +47129,16 @@ type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46263,32 +47157,32 @@ type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46297,16 +47191,16 @@ type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByArchivedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46325,50 +47219,50 @@ type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `Intake` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Intake` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Intake` edge in the connection, with data from `Application`.""" -type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Intake` at the end of the edge.""" - node: Intake + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46387,32 +47281,32 @@ type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46421,16 +47315,16 @@ type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46449,32 +47343,32 @@ type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46483,16 +47377,16 @@ type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46511,52 +47405,50 @@ type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46575,54 +47467,54 @@ type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge!]! + edges: [CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatusType` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +A `Application` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge { +type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -46641,32 +47533,32 @@ type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46676,17 +47568,19 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46705,32 +47599,32 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46740,17 +47634,19 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnecti } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46769,32 +47665,32 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationStatus`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46804,17 +47700,19 @@ type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ApplicationStatus`. +A `Application` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -46833,54 +47731,54 @@ type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatusType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46899,32 +47797,32 @@ type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46934,17 +47832,19 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46963,52 +47863,54 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `Application` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -47027,52 +47929,54 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47091,54 +47995,54 @@ type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatusType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47157,52 +48061,54 @@ type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `FormDataStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `FormDataStatusType` edge in the connection, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -47221,32 +48127,32 @@ type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47255,18 +48161,16 @@ type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47285,50 +48189,50 @@ type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `Application` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47347,54 +48251,48 @@ type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } -""" -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. -""" -type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +"""A connection to a list of `Form` values, with data from `FormData`.""" +type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge!]! + edges: [CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ + """The count of *all* `Form` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationStatus` edge in the connection, with data from `Attachment`. -""" -type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge { +"""A `Form` edge in the connection, with data from `FormData`.""" +type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `Form` at the end of the edge.""" + node: Form - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -47413,50 +48311,54 @@ type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `FormDataStatusType` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge { +""" +A `FormDataStatusType` edge in the connection, with data from `FormData`. +""" +type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -47475,32 +48377,32 @@ type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47509,16 +48411,16 @@ type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47537,50 +48439,50 @@ type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `Application` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47599,54 +48501,48 @@ type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } -""" -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. -""" -type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +"""A connection to a list of `Form` values, with data from `FormData`.""" +type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge!]! + edges: [CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ + """The count of *all* `Form` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationStatus` edge in the connection, with data from `Attachment`. -""" -type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge { +"""A `Form` edge in the connection, with data from `FormData`.""" +type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `Form` at the end of the edge.""" + node: Form - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -47665,50 +48561,54 @@ type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `FormDataStatusType` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge { +""" +A `FormDataStatusType` edge in the connection, with data from `FormData`. +""" +type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -47727,32 +48627,32 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47761,16 +48661,16 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47789,50 +48689,50 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `Application` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47851,54 +48751,48 @@ type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } -""" -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. -""" -type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +"""A connection to a list of `Form` values, with data from `FormData`.""" +type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge!]! + edges: [CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ + """The count of *all* `Form` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationStatus` edge in the connection, with data from `Attachment`. -""" -type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge { +"""A `Form` edge in the connection, with data from `FormData`.""" +type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `Form` at the end of the edge.""" + node: Form - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -47917,50 +48811,52 @@ type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `GisData` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge { +""" +A `GisData` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `GisData` at the end of the edge.""" + node: GisData - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -47979,50 +48875,52 @@ type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -48041,54 +48939,52 @@ type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `FormDataStatusType` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `FormDataStatusType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `FormDataStatusType` edge in the connection, with data from `FormData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48107,32 +49003,32 @@ type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48141,16 +49037,18 @@ type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48169,50 +49067,52 @@ type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `GisData` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge { +""" +A `GisData` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `GisData` at the end of the edge.""" + node: GisData - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -48231,48 +49131,52 @@ type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `Form` values, with data from `FormData`.""" -type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection { - """A list of `Form` objects.""" - nodes: [Form]! +""" +A connection to a list of `Application` values, with data from `ApplicationGisData`. +""" +type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Form` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `Form` edge in the connection, with data from `FormData`.""" -type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Form` at the end of the edge.""" - node: Form + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -48291,54 +49195,52 @@ type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `FormDataStatusType` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `FormDataStatusType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `FormDataStatusType` edge in the connection, with data from `FormData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48357,32 +49259,32 @@ type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48391,16 +49293,18 @@ type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48419,50 +49323,52 @@ type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `GisData` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge { +""" +A `GisData` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `GisData` at the end of the edge.""" + node: GisData - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -48481,48 +49387,52 @@ type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `Form` values, with data from `FormData`.""" -type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection { - """A list of `Form` objects.""" - nodes: [Form]! +""" +A connection to a list of `Application` values, with data from `ApplicationGisData`. +""" +type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Form` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `Form` edge in the connection, with data from `FormData`.""" -type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Form` at the end of the edge.""" - node: Form + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -48541,54 +49451,52 @@ type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `FormDataStatusType` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `FormDataStatusType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `FormDataStatusType` edge in the connection, with data from `FormData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48607,32 +49515,32 @@ type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48641,16 +49549,18 @@ type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48669,50 +49579,54 @@ type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -48731,48 +49645,54 @@ type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } -"""A connection to a list of `Form` values, with data from `FormData`.""" -type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection { - """A list of `Form` objects.""" - nodes: [Form]! +""" +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Form` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Form` edge in the connection, with data from `FormData`.""" -type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Form` at the end of the edge.""" - node: Form + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48791,30 +49711,32 @@ type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48823,16 +49745,20 @@ type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByUpdatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48851,48 +49777,54 @@ type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ProjectInformationData`. +""" +type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Analyst`.""" - analystsByArchivedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -48911,30 +49843,32 @@ type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48943,16 +49877,20 @@ type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByCreatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48971,30 +49909,32 @@ type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49003,16 +49943,20 @@ type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByArchivedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -49031,48 +49975,54 @@ type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ProjectInformationData`. +""" +type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Analyst`.""" - analystsByCreatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -49091,30 +50041,32 @@ type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49123,16 +50075,20 @@ type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByUpdatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49151,54 +50107,54 @@ type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ProjectInformationData`. """ - applicationAnalystLeadsByApplicationId( + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49217,54 +50173,54 @@ type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `RfiDataStatusType` values, with data from `RfiData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyConnection { + """A list of `RfiDataStatusType` objects.""" + nodes: [RfiDataStatusType]! """ - A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `RfiDataStatusType`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """ + The count of *all* `RfiDataStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +A `RfiDataStatusType` edge in the connection, with data from `RfiData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge { +type CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `RfiDataStatusType` at the end of the edge.""" + node: RfiDataStatusType - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByAnalystId( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -49283,32 +50239,55 @@ type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: RfiDataFilter + ): RfiDataConnection! +} + +"""Methods to use when ordering `RfiDataStatusType`.""" +enum RfiDataStatusTypesOrderBy { + NATURAL + NAME_ASC + NAME_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A condition to be used against `RfiDataStatusType` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection { +input RfiDataStatusTypeCondition { + """Checks for equality with the object’s `name` field.""" + name: String + + """Checks for equality with the object’s `description` field.""" + description: String +} + +""" +A connection to a list of `CcbcUser` values, with data from `RfiData`. +""" +type CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49317,20 +50296,16 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByUpdatedBy( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49349,32 +50324,32 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: RfiDataFilter + ): RfiDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `RfiData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49383,20 +50358,16 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByArchivedBy( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -49415,54 +50386,54 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: RfiDataFilter + ): RfiDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `RfiDataStatusType` values, with data from `RfiData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyConnection { + """A list of `RfiDataStatusType` objects.""" + nodes: [RfiDataStatusType]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `RfiDataStatusType`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `RfiDataStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `RfiDataStatusType` edge in the connection, with data from `RfiData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `RfiDataStatusType` at the end of the edge.""" + node: RfiDataStatusType - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByApplicationId( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -49481,54 +50452,50 @@ type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: RfiDataFilter + ): RfiDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `RfiData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByAnalystId( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49547,32 +50514,32 @@ type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: RfiDataFilter + ): RfiDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `RfiData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49581,20 +50548,16 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByCreatedBy( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -49613,54 +50576,54 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: RfiDataFilter + ): RfiDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `RfiDataStatusType` values, with data from `RfiData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyConnection { + """A list of `RfiDataStatusType` objects.""" + nodes: [RfiDataStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `RfiDataStatusType`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `RfiDataStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `RfiDataStatusType` edge in the connection, with data from `RfiData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `RfiDataStatusType` at the end of the edge.""" + node: RfiDataStatusType - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByArchivedBy( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -49679,54 +50642,50 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: RfiDataFilter + ): RfiDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `RfiData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByApplicationId( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49745,54 +50704,50 @@ type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: RfiDataFilter + ): RfiDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `RfiData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByAnalystId( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49811,32 +50766,30 @@ type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: RfiDataFilter + ): RfiDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. -""" -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49845,20 +50798,16 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByCreatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49877,32 +50826,30 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. -""" -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49911,20 +50858,16 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -49943,54 +50886,50 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `RfiDataStatusType` values, with data from `RfiData`. +A connection to a list of `GaplessCounter` values, with data from `Intake`. """ -type CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyConnection { - """A list of `RfiDataStatusType` objects.""" - nodes: [RfiDataStatusType]! +type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection { + """A list of `GaplessCounter` objects.""" + nodes: [GaplessCounter]! """ - A list of edges which contains the `RfiDataStatusType`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `RfiDataStatusType` you could get from the connection. - """ + """The count of *all* `GaplessCounter` you could get from the connection.""" totalCount: Int! } -""" -A `RfiDataStatusType` edge in the connection, with data from `RfiData`. -""" -type CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyEdge { +"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" +type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `RfiDataStatusType` at the end of the edge.""" - node: RfiDataStatusType + """The `GaplessCounter` at the end of the edge.""" + node: GaplessCounter - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByRfiDataStatusTypeId( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( """Only read the first `n` values of the set.""" first: Int @@ -50009,53 +50948,53 @@ type CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: IntakeFilter + ): IntakesConnection! } -"""Methods to use when ordering `RfiDataStatusType`.""" -enum RfiDataStatusTypesOrderBy { +"""Methods to use when ordering `GaplessCounter`.""" +enum GaplessCountersOrderBy { NATURAL - NAME_ASC - NAME_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC + ID_ASC + ID_DESC + COUNTER_ASC + COUNTER_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `RfiDataStatusType` object types. All fields are +A condition to be used against `GaplessCounter` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input RfiDataStatusTypeCondition { - """Checks for equality with the object’s `name` field.""" - name: String +input GaplessCounterCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Checks for equality with the object’s `description` field.""" - description: String + """Checks for equality with the object’s `counter` field.""" + counter: Int } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50064,16 +51003,16 @@ type CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50092,30 +51031,30 @@ type CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: IntakeFilter + ): IntakesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50124,16 +51063,16 @@ type CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -50152,54 +51091,50 @@ type CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `RfiDataStatusType` values, with data from `RfiData`. +A connection to a list of `GaplessCounter` values, with data from `Intake`. """ -type CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyConnection { - """A list of `RfiDataStatusType` objects.""" - nodes: [RfiDataStatusType]! +type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection { + """A list of `GaplessCounter` objects.""" + nodes: [GaplessCounter]! """ - A list of edges which contains the `RfiDataStatusType`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `RfiDataStatusType` you could get from the connection. - """ + """The count of *all* `GaplessCounter` you could get from the connection.""" totalCount: Int! } -""" -A `RfiDataStatusType` edge in the connection, with data from `RfiData`. -""" -type CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyEdge { +"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" +type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `RfiDataStatusType` at the end of the edge.""" - node: RfiDataStatusType + """The `GaplessCounter` at the end of the edge.""" + node: GaplessCounter - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByRfiDataStatusTypeId( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( """Only read the first `n` values of the set.""" first: Int @@ -50218,30 +51153,30 @@ type CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: IntakeFilter + ): IntakesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50250,16 +51185,16 @@ type CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByCreatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50278,30 +51213,30 @@ type CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: IntakeFilter + ): IntakesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50310,16 +51245,16 @@ type CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50338,54 +51273,116 @@ type CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `RfiDataStatusType` values, with data from `RfiData`. +A connection to a list of `GaplessCounter` values, with data from `Intake`. """ -type CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyConnection { - """A list of `RfiDataStatusType` objects.""" - nodes: [RfiDataStatusType]! +type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection { + """A list of `GaplessCounter` objects.""" + nodes: [GaplessCounter]! """ - A list of edges which contains the `RfiDataStatusType`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! + """The count of *all* `GaplessCounter` you could get from the connection.""" + totalCount: Int! +} + +"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" +type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `GaplessCounter` at the end of the edge.""" + node: GaplessCounter + + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): IntakesConnection! +} + +""" +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +""" +type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + """ - The count of *all* `RfiDataStatusType` you could get from the connection. + A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ + edges: [CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `RfiDataStatusType` edge in the connection, with data from `RfiData`. +A `Application` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `RfiDataStatusType` at the end of the edge.""" - node: RfiDataStatusType + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByRfiDataStatusTypeId( + """ + Reads and enables pagination through a set of `ApplicationClaimsData`. + """ + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -50404,30 +51401,32 @@ type CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50436,16 +51435,20 @@ type CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsData`. + """ + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50464,30 +51467,32 @@ type CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50496,16 +51501,20 @@ type CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsData`. + """ + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -50524,32 +51533,32 @@ type CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Application` values, with data from `AssessmentData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50559,17 +51568,19 @@ type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConn } """ -A `Application` edge in the connection, with data from `AssessmentData`. +A `Application` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationClaimsData`. + """ + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -50588,52 +51599,54 @@ type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `AssessmentType` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `AssessmentType` edge in the connection, with data from `AssessmentData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """ + Reads and enables pagination through a set of `ApplicationClaimsData`. + """ + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50652,32 +51665,32 @@ type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50686,16 +51699,20 @@ type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsData`. + """ + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -50714,50 +51731,54 @@ type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationClaimsData`. +""" +type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsData`. + """ + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -50776,52 +51797,54 @@ type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Application` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `AssessmentData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationClaimsData`. + """ + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50840,52 +51863,54 @@ type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `AssessmentType` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `AssessmentType` edge in the connection, with data from `AssessmentData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """ + Reads and enables pagination through a set of `ApplicationClaimsData`. + """ + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50904,50 +51929,54 @@ type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. +""" +type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -50966,32 +51995,32 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51000,16 +52029,20 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51028,52 +52061,54 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `AssessmentData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -51092,52 +52127,54 @@ type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `AssessmentType` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `AssessmentType` edge in the connection, with data from `AssessmentData`. +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -51156,32 +52193,32 @@ type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51190,16 +52227,20 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51218,32 +52259,32 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51252,16 +52293,20 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +""" +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -51280,32 +52325,32 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51315,17 +52360,19 @@ type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ApplicationPackage`. +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -51344,32 +52391,32 @@ type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51379,17 +52426,19 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51408,32 +52457,32 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51443,17 +52492,19 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51472,32 +52523,32 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51507,17 +52558,19 @@ type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ApplicationPackage`. +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -51536,32 +52589,34 @@ type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51571,17 +52626,19 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51600,32 +52657,34 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51635,17 +52694,19 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -51664,32 +52725,34 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51699,17 +52762,19 @@ type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToMan } """ -A `Application` edge in the connection, with data from `ApplicationPackage`. +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -51728,32 +52793,34 @@ type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51763,17 +52830,19 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51792,32 +52861,34 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51827,17 +52898,19 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -51856,32 +52929,34 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51891,9 +52966,9 @@ type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyT } """ -A `Application` edge in the connection, with data from `ConditionalApprovalData`. +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -51901,9 +52976,9 @@ type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyT node: Application """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - conditionalApprovalDataByApplicationId( + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -51922,32 +52997,34 @@ type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51957,9 +53034,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -51967,9 +53044,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - conditionalApprovalDataByUpdatedBy( + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51988,32 +53065,34 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52023,9 +53102,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52033,9 +53112,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. """ - conditionalApprovalDataByArchivedBy( + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52054,32 +53133,34 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52089,9 +53170,9 @@ type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyT } """ -A `Application` edge in the connection, with data from `ConditionalApprovalData`. +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52099,9 +53180,9 @@ type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyT node: Application """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - conditionalApprovalDataByApplicationId( + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -52120,32 +53201,34 @@ type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityReportExcelData`. + """ + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52155,9 +53238,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52165,9 +53248,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - conditionalApprovalDataByCreatedBy( + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52186,32 +53269,34 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityReportExcelData`. + """ + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52221,9 +53306,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52231,9 +53316,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - conditionalApprovalDataByArchivedBy( + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -52252,32 +53337,34 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityReportExcelData`. + """ + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52287,9 +53374,9 @@ type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ConditionalApprovalData`. +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52297,9 +53384,9 @@ type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdMany node: Application """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - conditionalApprovalDataByApplicationId( + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -52318,32 +53405,34 @@ type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityReportExcelData`. + """ + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52353,9 +53442,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52363,9 +53452,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - conditionalApprovalDataByCreatedBy( + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52384,32 +53473,34 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityReportExcelData`. + """ + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52419,9 +53510,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52429,9 +53520,9 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - conditionalApprovalDataByUpdatedBy( + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -52450,48 +53541,56 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityReportExcelData`. + """ + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `GisData`.""" - gisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -52510,30 +53609,34 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityReportExcelData`. + """ + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52542,16 +53645,20 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52570,30 +53677,34 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityReportExcelData`. + """ + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52602,16 +53713,20 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52630,48 +53745,56 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityReportExcelData`. + """ + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +""" +type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -52690,30 +53813,32 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52722,16 +53847,20 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52750,30 +53879,32 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52782,16 +53913,20 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -52810,52 +53945,54 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `GisData` edge in the connection, with data from `ApplicationGisData`. +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -52874,52 +54011,54 @@ type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52938,32 +54077,32 @@ type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52973,17 +54112,19 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53002,52 +54143,54 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -53066,52 +54209,54 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `GisData` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53130,52 +54275,54 @@ type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53194,52 +54341,54 @@ type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -53258,32 +54407,32 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53293,17 +54442,19 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53322,52 +54473,54 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `GisData` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53386,32 +54539,32 @@ type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53421,17 +54574,19 @@ type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToMan } """ -A `Application` edge in the connection, with data from `ApplicationGisData`. +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -53450,32 +54605,32 @@ type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53485,17 +54640,19 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53514,32 +54671,32 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53549,17 +54706,19 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53578,50 +54737,54 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +""" +type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -53640,32 +54803,32 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53674,16 +54837,20 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +""" +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53702,32 +54869,32 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53736,16 +54903,20 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +""" +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53764,50 +54935,54 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +""" +type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -53826,32 +55001,32 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53860,16 +55035,20 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +""" +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53888,32 +55067,32 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53922,16 +55101,20 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +""" +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53950,54 +55133,54 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnnouncementsByAnnouncementId( + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54016,54 +55199,54 @@ type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnnouncementsByApplicationId( + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54082,32 +55265,32 @@ type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54117,9 +55300,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54127,9 +55310,9 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEd node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnnouncementsByUpdatedBy( + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54148,54 +55331,54 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnnouncementsByArchivedBy( + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54214,54 +55397,54 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnnouncementsByAnnouncementId( + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54280,54 +55463,54 @@ type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationAnnouncementsByApplicationId( + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54346,54 +55529,52 @@ type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54412,32 +55593,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54447,19 +55628,17 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54478,54 +55657,52 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByAnnouncementId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54544,32 +55721,32 @@ type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54579,19 +55756,17 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54610,32 +55785,32 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54645,19 +55820,17 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54676,32 +55849,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54711,19 +55884,17 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54742,32 +55913,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54779,7 +55950,7 @@ type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToMany """ A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54824,14 +55995,14 @@ type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54843,7 +56014,7 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnect """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54851,7 +56022,7 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54888,14 +56059,14 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54907,7 +56078,7 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnec """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54915,7 +56086,7 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54950,36 +56121,34 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `Application` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationSowData`. -""" -type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54998,32 +56167,32 @@ type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55032,18 +56201,16 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55062,32 +56229,32 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55096,18 +56263,16 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55126,52 +56291,50 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } - -""" -A `Application` edge in the connection, with data from `ApplicationSowData`. -""" -type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge { + +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55190,32 +56353,32 @@ type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55224,18 +56387,16 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55254,32 +56415,32 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55288,18 +56449,16 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55318,54 +56477,52 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55384,30 +56541,32 @@ type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55416,16 +56575,18 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55444,30 +56605,32 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55476,16 +56639,18 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55504,54 +56669,52 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55570,30 +56733,32 @@ type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55602,16 +56767,18 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55630,30 +56797,32 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55662,16 +56831,18 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55690,54 +56861,52 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55756,30 +56925,32 @@ type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55788,16 +56959,18 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55816,30 +56989,32 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55848,16 +57023,18 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55876,54 +57053,50 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `Application` values, with data from `Notification`. """ -type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. -""" -type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55942,48 +57115,50 @@ type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `EmailRecord` values, with data from `Notification`. +""" +type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -56002,30 +57177,32 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56034,16 +57211,16 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56062,54 +57239,50 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. -""" -type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56128,48 +57301,50 @@ type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `Notification`. +""" +type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56188,48 +57363,50 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `EmailRecord` values, with data from `Notification`. +""" +type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -56248,54 +57425,50 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. -""" -type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SBySowId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56314,30 +57487,32 @@ type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56346,16 +57521,16 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56374,48 +57549,50 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `Notification`. +""" +type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56434,54 +57611,50 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ProjectInformationData`. -""" -type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByApplicationId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -56500,32 +57673,32 @@ type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56534,20 +57707,16 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56566,32 +57735,32 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56600,20 +57769,16 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56632,32 +57797,32 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56667,19 +57832,17 @@ type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyTo } """ -A `Application` edge in the connection, with data from `ProjectInformationData`. +A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56698,32 +57861,32 @@ type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56733,19 +57896,17 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56764,32 +57925,32 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56799,19 +57960,17 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56830,32 +57989,32 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56865,19 +58024,17 @@ type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyT } """ -A `Application` edge in the connection, with data from `ProjectInformationData`. +A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56896,32 +58053,32 @@ type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56931,19 +58088,17 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56962,32 +58117,32 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56997,19 +58152,17 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57028,54 +58181,52 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -57094,30 +58245,32 @@ type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57126,16 +58279,18 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57154,30 +58309,32 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57186,16 +58343,18 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57214,54 +58373,54 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -57280,30 +58439,32 @@ type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57312,16 +58473,20 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57340,30 +58505,32 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57372,16 +58539,20 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57400,54 +58571,54 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -57466,30 +58637,32 @@ type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57498,16 +58671,20 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57526,30 +58703,32 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57558,16 +58737,20 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57586,54 +58769,54 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab8`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -57652,30 +58835,32 @@ type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57684,16 +58869,20 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57712,30 +58901,32 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57744,16 +58935,20 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57772,54 +58967,50 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab8`. -""" -type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57838,30 +59029,32 @@ type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +""" +type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57870,16 +59063,16 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57898,30 +59091,32 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +""" +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57930,16 +59125,16 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57958,54 +59153,50 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationSowData` edge in the connection, with data from `SowTab8`. -""" -type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58024,30 +59215,32 @@ type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +""" +type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58056,16 +59249,16 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58084,30 +59277,32 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +""" +type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58116,16 +59311,16 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58144,32 +59339,32 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `Attachment`. """ -type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58178,18 +59373,16 @@ type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyC totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58208,52 +59401,54 @@ type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -58272,32 +59467,32 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58306,18 +59501,16 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58336,52 +59529,50 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58400,52 +59591,50 @@ type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58464,52 +59653,54 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -58528,52 +59719,50 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58592,32 +59781,32 @@ type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58626,18 +59815,16 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58656,52 +59843,50 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. -""" -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58720,54 +59905,54 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByApplicationId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -58786,34 +59971,32 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApp """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58822,20 +60005,16 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdate totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58854,34 +60033,32 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdate """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58890,20 +60067,16 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchiv totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58922,56 +60095,50 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchiv """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `GisData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByApplicationId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58990,34 +60157,32 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApp """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: GisDataFilter + ): GisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `GisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59026,20 +60191,16 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreate totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByCreatedBy( + + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59058,34 +60219,32 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreate """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: GisDataFilter + ): GisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `GisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59094,20 +60253,16 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchiv totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59126,56 +60281,50 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchiv """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: GisDataFilter + ): GisDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `GisData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByApplicationId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59194,34 +60343,32 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndAp """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: GisDataFilter + ): GisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `GisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59230,20 +60377,16 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreat totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByCreatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59262,34 +60405,32 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreat """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: GisDataFilter + ): GisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `GisData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59298,20 +60439,16 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdat totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByUpdatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59330,56 +60467,48 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdat """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59398,32 +60527,30 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplic """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59432,20 +60559,16 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59464,32 +60587,30 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59498,20 +60619,16 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedB totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59530,54 +60647,48 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59596,32 +60707,30 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplic """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59630,20 +60739,16 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByCreatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59662,32 +60767,30 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59696,20 +60799,16 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedB totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. -""" -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59728,32 +60827,32 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: AnalystFilter + ): AnalystsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59763,9 +60862,9 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndAppli } """ -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59773,9 +60872,9 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndAppli node: Application """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationCommunityReportExcelDataByApplicationId( + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59794,54 +60893,54 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndAppli """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Analyst` at the end of the edge.""" + node: Analyst """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationCommunityReportExcelDataByCreatedBy( + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -59860,32 +60959,32 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59895,9 +60994,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59905,9 +61004,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedB node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - applicationCommunityReportExcelDataByUpdatedBy( + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59926,52 +61025,54 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59990,52 +61091,54 @@ type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60054,52 +61157,54 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Analyst` at the end of the edge.""" + node: Analyst - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -60118,52 +61223,54 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60182,32 +61289,32 @@ type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60217,17 +61324,19 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60246,52 +61355,54 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60310,52 +61421,54 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationClaimsData`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Analyst` at the end of the edge.""" + node: Analyst - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -60374,32 +61487,32 @@ type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60409,17 +61522,19 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60438,32 +61553,32 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60473,17 +61588,19 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60502,54 +61619,54 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Announcement` at the end of the edge.""" + node: Announcement """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationClaimsExcelDataByApplicationId( + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -60568,54 +61685,54 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationClaimsExcelDataByUpdatedBy( + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60634,32 +61751,32 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60669,9 +61786,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60679,9 +61796,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationClaimsExcelDataByArchivedBy( + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60700,54 +61817,54 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationClaimsExcelDataByApplicationId( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60766,54 +61883,54 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Announcement` at the end of the edge.""" + node: Announcement """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationClaimsExcelDataByCreatedBy( + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -60832,54 +61949,54 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationClaimsExcelDataByArchivedBy( + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60898,54 +62015,54 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationClaimsExcelDataByApplicationId( + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60964,32 +62081,32 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60999,9 +62116,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61009,9 +62126,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationClaimsExcelDataByCreatedBy( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61030,54 +62147,54 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Announcement` at the end of the edge.""" + node: Announcement """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationClaimsExcelDataByUpdatedBy( + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -61096,32 +62213,32 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61131,9 +62248,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61141,9 +62258,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdMany node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByApplicationId( + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61162,32 +62279,32 @@ type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61197,9 +62314,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61207,9 +62324,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByUpdatedBy( + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61228,32 +62345,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61263,9 +62380,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61273,9 +62390,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationMilestoneDataByArchivedBy( + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61294,32 +62411,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61329,19 +62446,17 @@ type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +A `Application` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61360,54 +62475,54 @@ type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -61426,32 +62541,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61461,19 +62576,17 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61492,54 +62605,52 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61558,54 +62669,52 @@ type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `Application` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61624,54 +62733,54 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -61690,54 +62799,52 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61756,32 +62863,32 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationI """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61791,19 +62898,17 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61822,54 +62927,52 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Application` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61888,54 +62991,54 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -61954,32 +63057,32 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationI """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61989,19 +63092,17 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62020,32 +63121,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62055,19 +63156,17 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62086,54 +63185,50 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. -""" -type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByApplicationId( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62152,32 +63247,32 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplication """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62186,20 +63281,16 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyT totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62218,32 +63309,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62252,20 +63343,16 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyT totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62284,32 +63371,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62318,16 +63405,16 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62346,32 +63433,32 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62380,16 +63467,16 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62408,32 +63495,32 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62442,16 +63529,16 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62470,50 +63557,54 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +""" +type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -62532,32 +63623,30 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcProject`. -""" -type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62566,16 +63655,16 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62594,32 +63683,30 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `CbcProject`. -""" -type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62628,16 +63715,16 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62656,54 +63743,54 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByApplicationId( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -62722,32 +63809,30 @@ type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplication """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62756,20 +63841,16 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyT totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62788,32 +63869,30 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62822,20 +63901,16 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62854,54 +63929,54 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByApplicationId( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -62920,32 +63995,30 @@ type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplication """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62954,20 +64027,16 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyT totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62986,32 +64055,30 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63020,20 +64087,16 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63052,54 +64115,54 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByApplicationId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -63118,32 +64181,30 @@ type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicatio """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63152,20 +64213,16 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63184,32 +64241,30 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63218,20 +64273,16 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63250,54 +64301,54 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationProjectType`. +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -63316,32 +64367,30 @@ type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63350,20 +64399,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63382,32 +64427,30 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63416,20 +64459,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63448,54 +64487,54 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationProjectType`. +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -63514,32 +64553,30 @@ type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63548,20 +64585,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63580,32 +64613,30 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63614,20 +64645,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63646,54 +64673,54 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationProjectType`. +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. """ -type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -63712,32 +64739,30 @@ type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63746,20 +64771,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63778,32 +64799,30 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63812,20 +64831,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63844,50 +64859,54 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +""" +type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -63906,32 +64925,30 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. -""" -type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63940,16 +64957,16 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63968,32 +64985,30 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. -""" -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64002,16 +65017,16 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64030,50 +65045,54 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +""" +type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -64092,32 +65111,30 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. -""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64126,16 +65143,16 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64154,32 +65171,30 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. -""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64188,16 +65203,16 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64216,50 +65231,54 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ -A connection to a list of `Application` values, with data from `Notification`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. +""" +type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -64278,50 +65297,48 @@ type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `EmailRecord` values, with data from `Notification`. -""" -type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64340,32 +65357,30 @@ type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64374,16 +65389,16 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64402,50 +65417,54 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. +""" +type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -64464,50 +65483,48 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `Application` values, with data from `Notification`. -""" -type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64526,50 +65543,48 @@ type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `EmailRecord` values, with data from `Notification`. -""" -type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64588,50 +65603,54 @@ type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. +""" +type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -64650,32 +65669,30 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64684,16 +65701,16 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64712,50 +65729,48 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `Application` values, with data from `Notification`. -""" -type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64774,50 +65789,54 @@ type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `EmailRecord` values, with data from `Notification`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -64836,32 +65855,32 @@ type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64870,16 +65889,20 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -64898,32 +65921,32 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -64932,16 +65955,20 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -64960,54 +65987,54 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `Cbc` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCbcsByApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCbcsByApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `Cbc` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCbcsByApplicationPendingChangeRequestCreatedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Cbc` at the end of the edge.""" + node: Cbc """ Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationPendingChangeRequestsByApplicationId( + applicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -65042,38 +66069,38 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicatio } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationPendingChangeRequestsByUpdatedBy( + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -65110,14 +66137,14 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65129,7 +66156,7 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByMan """ A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -65139,7 +66166,7 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByMan """ Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationPendingChangeRequestsByArchivedBy( + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65174,38 +66201,38 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByMan } """ -A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationPendingChangeRequestsByApplicationId( + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -65240,38 +66267,38 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicatio } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `Cbc` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserCbcsByApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCbcsByApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `Cbc` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCbcsByApplicationPendingChangeRequestUpdatedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc """ Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationPendingChangeRequestsByCreatedBy( + applicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -65306,38 +66333,38 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByMany } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationPendingChangeRequestsByArchivedBy( + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -65372,38 +66399,38 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByMan } """ -A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationPendingChangeRequestsByApplicationId( + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65440,14 +66467,14 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicati """ A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -65459,7 +66486,7 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByMan """ A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -65469,7 +66496,7 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByMan """ Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationPendingChangeRequestsByCreatedBy( + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -65504,38 +66531,38 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByMan } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `Cbc` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserCbcsByApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCbcsByApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +A `Cbc` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCbcsByApplicationPendingChangeRequestArchivedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc """ Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationPendingChangeRequestsByUpdatedBy( + applicationPendingChangeRequestsByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -66049,7 +67076,9 @@ type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge { ): CbcDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +""" +A connection to a list of `CcbcUser` values, with data from `CbcData`. +""" type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! @@ -66109,7 +67138,9 @@ type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge { ): CbcDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +""" +A connection to a list of `CcbcUser` values, with data from `CbcData`. +""" type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! @@ -66289,7 +67320,9 @@ type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge { ): CbcDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +""" +A connection to a list of `CcbcUser` values, with data from `CbcData`. +""" type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! @@ -66349,7 +67382,9 @@ type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge { ): CbcDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +""" +A connection to a list of `CcbcUser` values, with data from `CbcData`. +""" type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! @@ -66529,7 +67564,9 @@ type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge { ): CbcDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +""" +A connection to a list of `CcbcUser` values, with data from `CbcData`. +""" type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! @@ -66589,7 +67626,9 @@ type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge { ): CbcDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +""" +A connection to a list of `CcbcUser` values, with data from `CbcData`. +""" type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! @@ -67881,7 +68920,9 @@ type Mutation { input: UpdateApplicationFormDataInput! ): UpdateApplicationFormDataPayload - """Updates a single `ApplicationFormData` using a unique key and a patch.""" + """ + Updates a single `ApplicationFormData` using a unique key and a patch. + """ updateApplicationFormDataByFormDataIdAndApplicationId( """ The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. @@ -69943,7 +70984,9 @@ type CreateApplicationGisDataPayload { """ query: Query - """Reads a single `GisData` that is related to this `ApplicationGisData`.""" + """ + Reads a single `GisData` that is related to this `ApplicationGisData`. + """ gisDataByBatchId: GisData """ @@ -70134,6 +71177,11 @@ type CreateApplicationPendingChangeRequestPayload { """ ccbcUserByArchivedBy: CcbcUser + """ + Reads a single `Cbc` that is related to this `ApplicationPendingChangeRequest`. + """ + cbcByCbcId: Cbc + """ An edge for our `ApplicationPendingChangeRequest`. May be used by Relay 1. """ @@ -70187,6 +71235,11 @@ input ApplicationPendingChangeRequestInput { """archived at timestamp""" archivedAt: Datetime + + """ + ID of the cbc application this application_pending_change_request belongs to + """ + cbcId: Int } """The output of our create `ApplicationProjectType` mutation.""" @@ -70287,7 +71340,9 @@ type CreateApplicationRfiDataPayload { """ query: Query - """Reads a single `RfiData` that is related to this `ApplicationRfiData`.""" + """ + Reads a single `RfiData` that is related to this `ApplicationRfiData`. + """ rfiDataByRfiDataId: RfiData """ @@ -70480,7 +71535,9 @@ type CreateAssessmentDataPayload { """ query: Query - """Reads a single `Application` that is related to this `AssessmentData`.""" + """ + Reads a single `Application` that is related to this `AssessmentData`. + """ applicationByApplicationId: Application """ @@ -70942,13 +71999,19 @@ type CreateChangeRequestDataPayload { """ applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + """ + Reads a single `CcbcUser` that is related to this `ChangeRequestData`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + """ + Reads a single `CcbcUser` that is related to this `ChangeRequestData`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + """ + Reads a single `CcbcUser` that is related to this `ChangeRequestData`. + """ ccbcUserByArchivedBy: CcbcUser """An edge for our `ChangeRequestData`. May be used by Relay 1.""" @@ -71970,7 +73033,9 @@ type CreateSowTab1Payload { """ query: Query - """Reads a single `ApplicationSowData` that is related to this `SowTab1`.""" + """ + Reads a single `ApplicationSowData` that is related to this `SowTab1`. + """ applicationSowDataBySowId: ApplicationSowData """Reads a single `CcbcUser` that is related to this `SowTab1`.""" @@ -72045,7 +73110,9 @@ type CreateSowTab2Payload { """ query: Query - """Reads a single `ApplicationSowData` that is related to this `SowTab2`.""" + """ + Reads a single `ApplicationSowData` that is related to this `SowTab2`. + """ applicationSowDataBySowId: ApplicationSowData """Reads a single `CcbcUser` that is related to this `SowTab2`.""" @@ -72121,7 +73188,9 @@ type CreateSowTab7Payload { """ query: Query - """Reads a single `ApplicationSowData` that is related to this `SowTab7`.""" + """ + Reads a single `ApplicationSowData` that is related to this `SowTab7`. + """ applicationSowDataBySowId: ApplicationSowData """Reads a single `CcbcUser` that is related to this `SowTab7`.""" @@ -72196,7 +73265,9 @@ type CreateSowTab8Payload { """ query: Query - """Reads a single `ApplicationSowData` that is related to this `SowTab8`.""" + """ + Reads a single `ApplicationSowData` that is related to this `SowTab8`. + """ applicationSowDataBySowId: ApplicationSowData """Reads a single `CcbcUser` that is related to this `SowTab8`.""" @@ -73095,7 +74166,9 @@ type UpdateApplicationCommunityReportExcelDataPayload { An edge for our `ApplicationCommunityReportExcelData`. May be used by Relay 1. """ applicationCommunityReportExcelDataEdge( - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + """ + The method to use when ordering `ApplicationCommunityReportExcelData`. + """ orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] ): ApplicationCommunityReportExcelDataEdge } @@ -73348,7 +74421,9 @@ type UpdateApplicationGisDataPayload { """ query: Query - """Reads a single `GisData` that is related to this `ApplicationGisData`.""" + """ + Reads a single `GisData` that is related to this `ApplicationGisData`. + """ gisDataByBatchId: GisData """ @@ -73679,7 +74754,9 @@ type UpdateApplicationMilestoneExcelDataPayload { """ clientMutationId: String - """The `ApplicationMilestoneExcelData` that was updated by this mutation.""" + """ + The `ApplicationMilestoneExcelData` that was updated by this mutation. + """ applicationMilestoneExcelData: ApplicationMilestoneExcelData """ @@ -73929,6 +75006,11 @@ type UpdateApplicationPendingChangeRequestPayload { """ ccbcUserByArchivedBy: CcbcUser + """ + Reads a single `Cbc` that is related to this `ApplicationPendingChangeRequest`. + """ + cbcByCbcId: Cbc + """ An edge for our `ApplicationPendingChangeRequest`. May be used by Relay 1. """ @@ -73991,6 +75073,11 @@ input ApplicationPendingChangeRequestPatch { """archived at timestamp""" archivedAt: Datetime + + """ + ID of the cbc application this application_pending_change_request belongs to + """ + cbcId: Int } """ @@ -74136,7 +75223,9 @@ type UpdateApplicationRfiDataPayload { """ query: Query - """Reads a single `RfiData` that is related to this `ApplicationRfiData`.""" + """ + Reads a single `RfiData` that is related to this `ApplicationRfiData`. + """ rfiDataByRfiDataId: RfiData """ @@ -74545,7 +75634,9 @@ type UpdateAssessmentDataPayload { """ query: Query - """Reads a single `Application` that is related to this `AssessmentData`.""" + """ + Reads a single `Application` that is related to this `AssessmentData`. + """ applicationByApplicationId: Application """ @@ -75273,13 +76364,19 @@ type UpdateChangeRequestDataPayload { """ applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + """ + Reads a single `CcbcUser` that is related to this `ChangeRequestData`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + """ + Reads a single `CcbcUser` that is related to this `ChangeRequestData`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + """ + Reads a single `CcbcUser` that is related to this `ChangeRequestData`. + """ ccbcUserByArchivedBy: CcbcUser """An edge for our `ChangeRequestData`. May be used by Relay 1.""" @@ -76602,7 +77699,9 @@ type UpdateSowTab1Payload { """ query: Query - """Reads a single `ApplicationSowData` that is related to this `SowTab1`.""" + """ + Reads a single `ApplicationSowData` that is related to this `SowTab1`. + """ applicationSowDataBySowId: ApplicationSowData """Reads a single `CcbcUser` that is related to this `SowTab1`.""" @@ -76701,7 +77800,9 @@ type UpdateSowTab2Payload { """ query: Query - """Reads a single `ApplicationSowData` that is related to this `SowTab2`.""" + """ + Reads a single `ApplicationSowData` that is related to this `SowTab2`. + """ applicationSowDataBySowId: ApplicationSowData """Reads a single `CcbcUser` that is related to this `SowTab2`.""" @@ -76803,7 +77904,9 @@ type UpdateSowTab7Payload { """ query: Query - """Reads a single `ApplicationSowData` that is related to this `SowTab7`.""" + """ + Reads a single `ApplicationSowData` that is related to this `SowTab7`. + """ applicationSowDataBySowId: ApplicationSowData """Reads a single `CcbcUser` that is related to this `SowTab7`.""" @@ -76902,7 +78005,9 @@ type UpdateSowTab8Payload { """ query: Query - """Reads a single `ApplicationSowData` that is related to this `SowTab8`.""" + """ + Reads a single `ApplicationSowData` that is related to this `SowTab8`. + """ applicationSowDataBySowId: ApplicationSowData """Reads a single `CcbcUser` that is related to this `SowTab8`.""" @@ -77339,7 +78444,9 @@ type DeleteApplicationGisDataPayload { """ query: Query - """Reads a single `GisData` that is related to this `ApplicationGisData`.""" + """ + Reads a single `GisData` that is related to this `ApplicationGisData`. + """ gisDataByBatchId: GisData """ @@ -77502,6 +78609,11 @@ type DeleteApplicationPendingChangeRequestPayload { """ ccbcUserByArchivedBy: CcbcUser + """ + Reads a single `Cbc` that is related to this `ApplicationPendingChangeRequest`. + """ + cbcByCbcId: Cbc + """ An edge for our `ApplicationPendingChangeRequest`. May be used by Relay 1. """ @@ -77626,7 +78738,9 @@ type DeleteApplicationRfiDataPayload { """ query: Query - """Reads a single `RfiData` that is related to this `ApplicationRfiData`.""" + """ + Reads a single `RfiData` that is related to this `ApplicationRfiData`. + """ rfiDataByRfiDataId: RfiData """ @@ -77820,7 +78934,9 @@ type DeleteAssessmentDataPayload { """ query: Query - """Reads a single `Application` that is related to this `AssessmentData`.""" + """ + Reads a single `Application` that is related to this `AssessmentData`. + """ applicationByApplicationId: Application """ @@ -78202,13 +79318,19 @@ type DeleteChangeRequestDataPayload { """ applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + """ + Reads a single `CcbcUser` that is related to this `ChangeRequestData`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + """ + Reads a single `CcbcUser` that is related to this `ChangeRequestData`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + """ + Reads a single `CcbcUser` that is related to this `ChangeRequestData`. + """ ccbcUserByArchivedBy: CcbcUser """An edge for our `ChangeRequestData`. May be used by Relay 1.""" @@ -79031,7 +80153,9 @@ type DeleteSowTab1Payload { """ query: Query - """Reads a single `ApplicationSowData` that is related to this `SowTab1`.""" + """ + Reads a single `ApplicationSowData` that is related to this `SowTab1`. + """ applicationSowDataBySowId: ApplicationSowData """Reads a single `CcbcUser` that is related to this `SowTab1`.""" @@ -79091,7 +80215,9 @@ type DeleteSowTab2Payload { """ query: Query - """Reads a single `ApplicationSowData` that is related to this `SowTab2`.""" + """ + Reads a single `ApplicationSowData` that is related to this `SowTab2`. + """ applicationSowDataBySowId: ApplicationSowData """Reads a single `CcbcUser` that is related to this `SowTab2`.""" @@ -79153,7 +80279,9 @@ type DeleteSowTab7Payload { """ query: Query - """Reads a single `ApplicationSowData` that is related to this `SowTab7`.""" + """ + Reads a single `ApplicationSowData` that is related to this `SowTab7`. + """ applicationSowDataBySowId: ApplicationSowData """Reads a single `CcbcUser` that is related to this `SowTab7`.""" @@ -79213,7 +80341,9 @@ type DeleteSowTab8Payload { """ query: Query - """Reads a single `ApplicationSowData` that is related to this `SowTab8`.""" + """ + Reads a single `ApplicationSowData` that is related to this `SowTab8`. + """ applicationSowDataBySowId: ApplicationSowData """Reads a single `CcbcUser` that is related to this `SowTab8`.""" @@ -79737,7 +80867,9 @@ type CreateApplicationCommunityReportExcelDataPayload { An edge for our `ApplicationCommunityReportExcelData`. May be used by Relay 1. """ applicationCommunityReportExcelDataEdge( - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + """ + The method to use when ordering `ApplicationCommunityReportExcelData`. + """ orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] ): ApplicationCommunityReportExcelDataEdge } @@ -79986,7 +81118,9 @@ type CreateAssessmentFormPayload { """ query: Query - """Reads a single `Application` that is related to this `AssessmentData`.""" + """ + Reads a single `Application` that is related to this `AssessmentData`. + """ applicationByApplicationId: Application """ @@ -80082,13 +81216,19 @@ type CreateChangeRequestPayload { """ applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + """ + Reads a single `CcbcUser` that is related to this `ChangeRequestData`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + """ + Reads a single `CcbcUser` that is related to this `ChangeRequestData`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + """ + Reads a single `CcbcUser` that is related to this `ChangeRequestData`. + """ ccbcUserByArchivedBy: CcbcUser """An edge for our `ChangeRequestData`. May be used by Relay 1.""" @@ -80416,6 +81556,11 @@ type CreatePendingChangeRequestPayload { """ ccbcUserByArchivedBy: CcbcUser + """ + Reads a single `Cbc` that is related to this `ApplicationPendingChangeRequest`. + """ + cbcByCbcId: Cbc + """ An edge for our `ApplicationPendingChangeRequest`. May be used by Relay 1. """ @@ -80432,8 +81577,9 @@ input CreatePendingChangeRequestInput { payload verbatim. May be used to track mutations by the client. """ clientMutationId: String - _applicationId: Int! _isPending: Boolean! + _applicationId: Int + _cbcId: Int _comment: String } diff --git a/app/tests/backend/lib/excel_import/cbc_project.test.ts b/app/tests/backend/lib/excel_import/cbc_project.test.ts index 91b60ff1ec..259194ab4c 100644 --- a/app/tests/backend/lib/excel_import/cbc_project.test.ts +++ b/app/tests/backend/lib/excel_import/cbc_project.test.ts @@ -88,7 +88,7 @@ describe('cbc_project', () => { .spyOn(XLSX.utils, 'sheet_to_json') .mockReturnValue([ { ...columnList }, - { A: 121231, B: 2, C: 3, D: 4, E: 5, AH: '2023-01-01' }, + { A: 121231, B: 2, C: 3, D: 4, E: 5, F: 'Yes', AH: '2023-01-01' }, ]); mocked(performQuery).mockImplementation(async () => { @@ -106,12 +106,22 @@ describe('cbc_project', () => { cbcDataByProjectNumber: { nodes: [], }, + applicationPendingChangeRequestsByCbcId: { + nodes: [], + }, }, createCbc: { cbc: { rowId: 1, }, }, + createPendingChangeRequest: { + pendingChangeRequest: { + cbcId: '1', + isPending: true, + comment: null, + }, + }, }, }; }); @@ -133,12 +143,109 @@ describe('cbc_project', () => { cbcDataByProjectNumber: { nodes: [], }, + applicationPendingChangeRequestsByCbcId: { + nodes: [], + }, }, createCbc: { cbc: { rowId: 1, }, }, + createPendingChangeRequest: { + pendingChangeRequest: { + cbcId: '1', + isPending: true, + comment: null, + }, + }, + }, + errorLog: [], + }); + }); + + it('should update when existing pending change request is different to parsed data', async () => { + jest + .spyOn(XLSX.utils, 'sheet_to_json') + .mockReturnValue([ + { ...columnList }, + { A: 121231, B: 2, C: 3, D: 4, E: 5, F: 'No', AH: '2023-01-01' }, + ]); + + mocked(performQuery).mockImplementation(async () => { + return { + data: { + createCbcProject: { + cbcProject: { + id: '1', + rowId: 1, + jsonData: {}, + }, + clientMutationId: '1', + }, + cbcByProjectNumber: { + cbcDataByProjectNumber: { + nodes: [{ rowId: 1, projectNumber: 121231, id: '1' }], + }, + applicationPendingChangeRequestsByCbcId: { + nodes: [ + { + rowId: 1, + cbcId: '1', + isPending: true, + }, + ], + }, + }, + createCbc: { + cbc: { + rowId: 1, + }, + }, + createPendingChangeRequest: { + pendingChangeRequest: { + cbcId: '1', + isPending: false, + comment: null, + }, + }, + }, + }; + }); + + const wb = XLSX.read(null); + const data = await LoadCbcProjectData(wb, 'CBC Project', null, request); + + expect(data).toEqual({ + data: { + createCbcProject: { + cbcProject: { + id: '1', + rowId: 1, + jsonData: {}, + }, + clientMutationId: '1', + }, + cbcByProjectNumber: { + cbcDataByProjectNumber: { + nodes: [{ rowId: 1, projectNumber: 121231, id: '1' }], + }, + applicationPendingChangeRequestsByCbcId: { + nodes: [{ rowId: 1, cbcId: '1', isPending: true }], + }, + }, + createCbc: { + cbc: { + rowId: 1, + }, + }, + createPendingChangeRequest: { + pendingChangeRequest: { + cbcId: '1', + isPending: false, + comment: null, + }, + }, }, errorLog: [], }); diff --git a/app/tests/components/Analyst/PendingChangeRequest.test.tsx b/app/tests/components/Analyst/PendingChangeRequest.test.tsx index 44c1d48dcb..a2306c0242 100644 --- a/app/tests/components/Analyst/PendingChangeRequest.test.tsx +++ b/app/tests/components/Analyst/PendingChangeRequest.test.tsx @@ -14,7 +14,10 @@ jest.mock('../../../backend/lib/graphql', () => ({ const testQuery = graphql` query PendingChangeRequestTestQuery($rowId: Int!) { applicationByRowId(rowId: $rowId) { - ...PendingChangeRequest_query + ...PendingChangeRequest_query_application + } + cbcByRowId(rowId: $rowId) { + ...PendingChangeRequest_query_cbc } } `; @@ -40,6 +43,27 @@ const mockQueryPayload = { }, }; +const mockQueryPayloadCbc = { + Query() { + return { + cbcByRowId: { + id: 'WyJjYmMiLDFd', + rowId: 1, + analystStatus: 'received', + externalStatus: 'on_hold', + applicationPendingChangeRequestsByCbcId: { + nodes: [ + { + comment: 'test comment for CBC', + isPending: true, + }, + ], + }, + }, + }; + }, +}; + const mockEmptyQueryPayload = { Query() { return { @@ -64,12 +88,26 @@ const componentTestingHelper = defaultQueryResolver: mockQueryPayload, getPropsFromTestQuery: (data) => ({ application: data.applicationByRowId, + isCbc: false, + }), + }); + +const componentTestingHelperCbc = + new ComponentTestingHelper({ + component: PendingChangeRequest, + testQuery, + compiledQuery, + defaultQueryResolver: mockQueryPayloadCbc, + getPropsFromTestQuery: (data) => ({ + application: data.cbcByRowId, + isCbc: true, }), }); describe('The Pending Change Request component', () => { beforeEach(() => { componentTestingHelper.reinit(); + componentTestingHelperCbc.reinit(); }); it('render the checkbox and comment icon correctly', () => { @@ -80,6 +118,55 @@ describe('The Pending Change Request component', () => { expect(screen.getByTestId('pending-change-request-checkbox')).toBeVisible(); }); + it('renders the checkbox and comment icon correctly for CBC', async () => { + componentTestingHelperCbc.loadQuery(); + componentTestingHelperCbc.renderComponent(); + + expect(screen.getByTestId('pending-change-request-checkbox')).toBeVisible(); + expect(screen.getByTestId('pending-change-request-comments')).toBeVisible(); + + const commentIcon = screen.getByTestId('pending-change-request-comments'); + await act(async () => { + fireEvent.click(commentIcon); + }); + + expect(screen.getByText('test comment for CBC')).toBeVisible(); + }); + + it('edit comment modal save button calls correct mutation for CBC', async () => { + componentTestingHelperCbc.loadQuery(); + componentTestingHelperCbc.renderComponent(); + + const commentIcon = screen.getByTestId('pending-change-request-comments'); + + await act(async () => { + fireEvent.click(commentIcon); + }); + + const textArea = screen.getByTestId('root_comment'); + + fireEvent.change(textArea, { + target: { value: 'Edited comment.' }, + }); + + const saveButton = screen.getByRole('button', { name: 'Save comment' }); + + await act(async () => { + fireEvent.click(saveButton); + }); + + componentTestingHelperCbc.expectMutationToBeCalled( + 'createPendingChangeRequestMutation', + { + input: { + _cbcId: 1, + _comment: 'Edited comment.', + _isPending: true, + }, + } + ); + }); + it('load edit comment modal when clicked comment icon', async () => { componentTestingHelper.loadQuery(); componentTestingHelper.renderComponent(); diff --git a/db/deploy/mutations/create_pending_change_request.sql b/db/deploy/mutations/create_pending_change_request.sql index 222d747e29..bc8f58961b 100644 --- a/db/deploy/mutations/create_pending_change_request.sql +++ b/db/deploy/mutations/create_pending_change_request.sql @@ -2,17 +2,26 @@ begin; -create or replace function ccbc_public.create_pending_change_request(_application_id int, _is_pending boolean, _comment varchar default null) returns ccbc_public.application_pending_change_request as $$ +create or replace function ccbc_public.create_pending_change_request(_is_pending boolean, _application_id int default null, _cbc_id int default null, _comment varchar default null) returns ccbc_public.application_pending_change_request as $$ declare new_request_id int; +old_request_id int; begin - insert into ccbc_public.application_pending_change_request (application_id, comment, is_pending) - values (_application_id, _comment, _is_pending) returning id into new_request_id; + if _application_id is not null then + select req.id into old_request_id from ccbc_public.application_pending_change_request as req where req.application_id = _application_id + order by req.id desc limit 1; + elsif _cbc_id is not null then + select req.id into old_request_id from ccbc_public.application_pending_change_request as req where req.cbc_id = _cbc_id + order by req.id desc limit 1; + end if; - update ccbc_public.application_pending_change_request - set archived_at = now() - where application_id = _application_id and archived_at is null and id != new_request_id; + insert into ccbc_public.application_pending_change_request (application_id, cbc_id, comment, is_pending) + values (_application_id, _cbc_id, _comment, _is_pending) returning id into new_request_id; + + if exists (select * from ccbc_public.application_pending_change_request where id = old_request_id) + then update ccbc_public.application_pending_change_request set archived_at = now() where id = old_request_id; + end if; return (select row(ccbc_public.application_pending_change_request.*) from ccbc_public.application_pending_change_request where id = new_request_id); diff --git a/db/deploy/mutations/create_pending_change_request@1.162.0.sql b/db/deploy/mutations/create_pending_change_request@1.162.0.sql new file mode 100644 index 0000000000..8535328de5 --- /dev/null +++ b/db/deploy/mutations/create_pending_change_request@1.162.0.sql @@ -0,0 +1,25 @@ +-- Deploy ccbc:mutations/create_pending_change_request.sql to pg + +begin; + +create or replace function ccbc_public.create_pending_change_request(_is_pending boolean, _application_id int default null, _cbc_id int default null, _comment varchar default null) returns ccbc_public.application_pending_change_request as $$ +declare +new_request_id int; +begin + + insert into ccbc_public.application_pending_change_request (application_id, cbc_id, comment, is_pending) + values (_application_id, _cbc_id, _comment, _is_pending) returning id into new_request_id; + + update ccbc_public.application_pending_change_request + set archived_at = now() + where application_id = _application_id and archived_at is null and id != new_request_id; + + return (select row(ccbc_public.application_pending_change_request.*) from ccbc_public.application_pending_change_request where id = new_request_id); + +end; +$$ language plpgsql volatile; + +grant execute on function ccbc_public.create_pending_change_request to ccbc_analyst; +grant execute on function ccbc_public.create_pending_change_request to ccbc_admin; + +commit; diff --git a/db/deploy/tables/application_pending_change_request_cbc_id.sql b/db/deploy/tables/application_pending_change_request_cbc_id.sql new file mode 100644 index 0000000000..34d327f682 --- /dev/null +++ b/db/deploy/tables/application_pending_change_request_cbc_id.sql @@ -0,0 +1,10 @@ +-- Deploy ccbc:tables/application_pending_change_request_cbc_id to pg + +BEGIN; + + +alter table ccbc_public.application_pending_change_request add column cbc_id integer references ccbc_public.cbc(id); + +comment on column ccbc_public.application_pending_change_request.cbc_id is 'ID of the cbc application this application_pending_change_request belongs to'; + +COMMIT; diff --git a/db/revert/mutations/create_pending_change_request.sql b/db/revert/mutations/create_pending_change_request.sql index 60eb4505bc..8535328de5 100644 --- a/db/revert/mutations/create_pending_change_request.sql +++ b/db/revert/mutations/create_pending_change_request.sql @@ -1,7 +1,25 @@ --- Revert ccbc:mutations/create_pending_change_request from pg +-- Deploy ccbc:mutations/create_pending_change_request.sql to pg -BEGIN; +begin; -drop function ccbc_public.create_pending_change_request; +create or replace function ccbc_public.create_pending_change_request(_is_pending boolean, _application_id int default null, _cbc_id int default null, _comment varchar default null) returns ccbc_public.application_pending_change_request as $$ +declare +new_request_id int; +begin -COMMIT; + insert into ccbc_public.application_pending_change_request (application_id, cbc_id, comment, is_pending) + values (_application_id, _cbc_id, _comment, _is_pending) returning id into new_request_id; + + update ccbc_public.application_pending_change_request + set archived_at = now() + where application_id = _application_id and archived_at is null and id != new_request_id; + + return (select row(ccbc_public.application_pending_change_request.*) from ccbc_public.application_pending_change_request where id = new_request_id); + +end; +$$ language plpgsql volatile; + +grant execute on function ccbc_public.create_pending_change_request to ccbc_analyst; +grant execute on function ccbc_public.create_pending_change_request to ccbc_admin; + +commit; diff --git a/db/revert/mutations/create_pending_change_request@1.162.0.sql b/db/revert/mutations/create_pending_change_request@1.162.0.sql new file mode 100644 index 0000000000..60eb4505bc --- /dev/null +++ b/db/revert/mutations/create_pending_change_request@1.162.0.sql @@ -0,0 +1,7 @@ +-- Revert ccbc:mutations/create_pending_change_request from pg + +BEGIN; + +drop function ccbc_public.create_pending_change_request; + +COMMIT; diff --git a/db/revert/tables/application_pending_change_request_cbc_id.sql b/db/revert/tables/application_pending_change_request_cbc_id.sql new file mode 100644 index 0000000000..cd05b5ff07 --- /dev/null +++ b/db/revert/tables/application_pending_change_request_cbc_id.sql @@ -0,0 +1,7 @@ +-- Revert ccbc:tables/application_pending_change_request_cbc_id from pg + +BEGIN; + +alter table ccbc_public.application_pending_change_request drop column cbc_id; + +COMMIT; diff --git a/db/sqitch.plan b/db/sqitch.plan index 9e705e38a7..e188741919 100644 --- a/db/sqitch.plan +++ b/db/sqitch.plan @@ -566,3 +566,5 @@ tables/cbc 2024-05-08T17:56:10Z Rafael Solorzano <61289255+rafasdc@users.noreply tables/cbc_data 2024-05-08T18:08:06Z Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> # table to hold the json data for individual cbc projects mutations/create_pending_change_request 2024-05-22T16:44:01Z ,,, # add create application pending change request mutation @1.162.0 2024-05-23T21:23:23Z CCBC Service Account # release v1.162.0 +tables/application_pending_change_request_cbc_id 2024-05-22T20:41:40Z ,,, # aadd cbc id to create pending change request +mutations/create_pending_change_request [mutations/create_pending_change_request@1.162.0] 2024-05-24T21:52:39Z ,,, # fix: pending change request archiving for cbc data