diff --git a/app/components/Analyst/ApplicationHeader.tsx b/app/components/Analyst/ApplicationHeader.tsx index c69db4c080..0fbf481315 100644 --- a/app/components/Analyst/ApplicationHeader.tsx +++ b/app/components/Analyst/ApplicationHeader.tsx @@ -7,6 +7,7 @@ import { useFeature } from '@growthbook/growthbook-react'; import EditProjectDescription from './EditProjectDescription'; import StatusInformationIcon from './StatusInformationIcon'; import AssignProjectType from './AssignProjectType'; +import PendingChangeRequest from './PendingChangeRequest/PendingChangeRequest'; const StyledCallout = styled.div` margin-bottom: 0.5em; @@ -38,7 +39,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; @@ -55,6 +56,10 @@ const StyledPackage = styled(StyledItem)` `; const StyledProjectType = styled(StyledItem)` + margin: 8px 0 0 0; +`; + +const StyledPendingChangeRequests = styled(StyledItem)` margin: 8px 0; `; @@ -113,6 +118,7 @@ const ApplicationHeader: React.FC = ({ query }) => { ...AssignPackage_query ...EditProjectDescription_query ...AssignProjectType_query + ...PendingChangeRequest_query } ...AssignLead_query allApplicationStatusTypes( @@ -221,6 +227,13 @@ const ApplicationHeader: React.FC = ({ query }) => { Project Type + + + + Pending Change Request + + + ); diff --git a/app/components/Analyst/PendingChangeRequest/ClosePendingRequestModal.tsx b/app/components/Analyst/PendingChangeRequest/ClosePendingRequestModal.tsx new file mode 100644 index 0000000000..aab9b9f5eb --- /dev/null +++ b/app/components/Analyst/PendingChangeRequest/ClosePendingRequestModal.tsx @@ -0,0 +1,63 @@ +import React, { useState } from 'react'; +import Modal from 'components/Modal'; +import { FormBase } from 'components/Form'; +import pendingChangeRequestCancel from 'formSchema/analyst/pendingChangeRequestCancel'; +import pendingChangeRequestCancelUiSchema from 'formSchema/uiSchema/analyst/pendingChangeRequestCancelUiSchema'; +import styled from 'styled-components'; + +interface Props { + isOpen: boolean; + onCancel?: Function; + onSave: Function; +} + +const StyledFormBase = styled(FormBase)` + min-width: 350px; + & .radio-widget { + margin-left: ${(props) => props.theme.spacing.xlarge}; + } +`; + +const ClosePendingRequestModal: React.FC = ({ + isOpen, + onCancel = () => {}, + onSave, +}) => { + const [formData, setFormData] = useState(null); + + return ( + onSave(formData.comment), + disabled: !formData?.comment, + }, + { + id: 'pending-request-change-cancel-btn', + label: 'No, Keep Pending', + onClick: () => onCancel(), + variant: 'secondary', + }, + ]} + > + setFormData(e.formData)} + // Pass children to hide submit button + // eslint-disable-next-line react/no-children-prop + children + /> + + ); +}; + +export default ClosePendingRequestModal; diff --git a/app/components/Analyst/PendingChangeRequest/PendingChangeRequest.tsx b/app/components/Analyst/PendingChangeRequest/PendingChangeRequest.tsx new file mode 100644 index 0000000000..3dd3c69933 --- /dev/null +++ b/app/components/Analyst/PendingChangeRequest/PendingChangeRequest.tsx @@ -0,0 +1,159 @@ +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'; +import * as Sentry from '@sentry/nextjs'; +import PendingChangeRequestModal from './PendingChangeRequestModal'; +import ClosePendingRequestModal from './ClosePendingRequestModal'; + +const StyledCheckbox = styled.input` + transform: scale(1.5); + transform-origin: left; + cursor: pointer; +`; + +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 + } + } + } + `, + application + ); + + const pendingChangeRequestModal = useModal(); + const closePendingRequestModal = useModal(); + const { applicationPendingChangeRequestsByApplicationId, rowId } = + queryFragment; + + const [isPending, setIsPending] = useState( + applicationPendingChangeRequestsByApplicationId?.nodes?.[0]?.isPending || + false + ); + + const [comment, setComment] = useState( + isPending + ? applicationPendingChangeRequestsByApplicationId?.nodes?.[0]?.comment + : null + ); + + const [isUpdateMode, setIsUpdateMode] = useState(false); + + const handleKeyDown = (event: React.KeyboardEvent) => { + if (event.key === 'Enter' || event.key === ' ') { + pendingChangeRequestModal.open(); + } + }; + + const [createPendingChangeRequest] = useCreatePendingChangeRequestMutation(); + + const handleChangePendingRequest = ( + isPendingRequest: boolean, + reasonForChange: string + ) => { + createPendingChangeRequest({ + variables: { + input: { + applicationPendingChangeRequest: { + applicationId: rowId, + comment: reasonForChange, + isPending: isPendingRequest, + }, + }, + }, + onCompleted: () => { + setIsPending(isPendingRequest); + setComment(isPendingRequest ? reasonForChange : null); + }, + onError: (err: any) => { + Sentry.captureException({ + name: 'Create Pending Change Request Error', + message: err.message, + }); + }, + }); + }; + + return ( + <> + { + if (e.target.checked) { + pendingChangeRequestModal.open(); + } else { + closePendingRequestModal.open(); + } + }} + /> + {isPending && ( +
{ + setIsUpdateMode(true); + pendingChangeRequestModal.open(); + }} + onKeyDown={handleKeyDown} + aria-labelledby="Comments on pending change request" + style={{ cursor: 'pointer' }} + data-testid="pending-change-request-comments" + > + +
+ )} + { + handleChangePendingRequest( + !isUpdateMode ? true : isPending, + reasonForChange + ); + pendingChangeRequestModal.close(); + }} + value={isPending ? comment : null} + onCancel={() => { + if (!isUpdateMode) handleChangePendingRequest(!isPending, comment); + setIsUpdateMode(false); + pendingChangeRequestModal.close(); + }} + /> + { + handleChangePendingRequest(false, reasonForChange); + closePendingRequestModal.close(); + }} + onCancel={() => { + closePendingRequestModal.close(); + }} + /> + + ); +}; + +export default PendingChangeRequest; diff --git a/app/components/Analyst/PendingChangeRequest/PendingChangeRequestModal.tsx b/app/components/Analyst/PendingChangeRequest/PendingChangeRequestModal.tsx new file mode 100644 index 0000000000..9cac3097f7 --- /dev/null +++ b/app/components/Analyst/PendingChangeRequest/PendingChangeRequestModal.tsx @@ -0,0 +1,66 @@ +import React, { useState, useEffect } from 'react'; +import Modal from 'components/Modal'; +import pendingChangeRequestComment from 'formSchema/analyst/pendingChangeRequestComment'; +import { FormBase } from 'components/Form'; +import pendingChangeRequestCommentUiSchema from 'formSchema/uiSchema/analyst/pendingChangeRequestCommentUiSchema'; +import styled from 'styled-components'; + +interface Props { + isOpen: boolean; + onCancel?: Function; + onSave: Function; + value: string; +} + +const StyledFormBase = styled(FormBase)` + min-width: 600px; +`; + +const PendingChangeRequestModal: React.FC = ({ + isOpen, + onCancel = () => {}, + onSave, + value, +}) => { + const [formData, setFormData] = useState({ comment: value }); + + useEffect(() => { + setFormData({ comment: value }); + }, [value]); + + return ( + onSave(formData.comment), + disabled: value === formData.comment, + }, + { + id: 'pending-request-change-cancel-btn', + label: 'Cancel', + onClick: () => onCancel(), + variant: 'secondary', + }, + ]} + > + setFormData(e.formData)} + // Pass children to hide submit button + // eslint-disable-next-line react/no-children-prop + children + /> + + ); +}; + +export default PendingChangeRequestModal; diff --git a/app/components/Analyst/index.ts b/app/components/Analyst/index.ts index ed59510ee9..b9a9f57cd7 100644 --- a/app/components/Analyst/index.ts +++ b/app/components/Analyst/index.ts @@ -7,3 +7,4 @@ export { default as ChangeStatus } from './ChangeStatus'; export { default as EditProjectDescription } from './EditProjectDescription'; export { default as NavigationSidebar } from './NavigationSidebar'; export { default as NavItem } from './NavItem'; +export { default as PendingChangeRequest } from './PendingChangeRequest/PendingChangeRequest'; diff --git a/app/components/Modal.tsx b/app/components/Modal.tsx index 84a5a30d50..c44dd4bc23 100644 --- a/app/components/Modal.tsx +++ b/app/components/Modal.tsx @@ -20,6 +20,7 @@ interface ActionProps { label: string; onClick: Function; variant?: 'primary' | 'secondary'; + disabled?: boolean; } const Modal: React.FC = ({ @@ -66,6 +67,7 @@ const Modal: React.FC = ({ key={action.label} onClick={action.onClick} variant={action.variant || 'primary'} + disabled={action.disabled} > {action.label} diff --git a/app/formSchema/analyst/pendingChangeRequestCancel.ts b/app/formSchema/analyst/pendingChangeRequestCancel.ts new file mode 100644 index 0000000000..225fd34b3c --- /dev/null +++ b/app/formSchema/analyst/pendingChangeRequestCancel.ts @@ -0,0 +1,17 @@ +import { RJSFSchema } from '@rjsf/utils'; + +const pendingChangeRequestCancel: RJSFSchema = { + title: ' ', + description: '', + type: 'object', + required: ['comment'], + properties: { + comment: { + title: 'Please select the appropriate option below', + type: 'string', + enum: ['Yes, change request completed', 'Yes, change request cancelled'], + }, + }, +}; + +export default pendingChangeRequestCancel; diff --git a/app/formSchema/analyst/pendingChangeRequestComment.ts b/app/formSchema/analyst/pendingChangeRequestComment.ts new file mode 100644 index 0000000000..191b38ed56 --- /dev/null +++ b/app/formSchema/analyst/pendingChangeRequestComment.ts @@ -0,0 +1,16 @@ +import { RJSFSchema } from '@rjsf/utils'; + +const pendingChangeRequestComment: RJSFSchema = { + title: ' ', + description: '', + type: 'object', + required: [], + properties: { + comment: { + title: '', + type: 'string', + }, + }, +}; + +export default pendingChangeRequestComment; diff --git a/app/formSchema/uiSchema/analyst/pendingChangeRequestCancelUiSchema.ts b/app/formSchema/uiSchema/analyst/pendingChangeRequestCancelUiSchema.ts new file mode 100644 index 0000000000..0db9f034e1 --- /dev/null +++ b/app/formSchema/uiSchema/analyst/pendingChangeRequestCancelUiSchema.ts @@ -0,0 +1,9 @@ +const pendingChangeRequestCommentUiSchema = { + 'ui:order': ['comment'], + 'ui:title': '', + comment: { + 'ui:widget': 'RadioWidget', + }, +}; + +export default pendingChangeRequestCommentUiSchema; diff --git a/app/formSchema/uiSchema/analyst/pendingChangeRequestCommentUiSchema.ts b/app/formSchema/uiSchema/analyst/pendingChangeRequestCommentUiSchema.ts new file mode 100644 index 0000000000..7a1a4fbf08 --- /dev/null +++ b/app/formSchema/uiSchema/analyst/pendingChangeRequestCommentUiSchema.ts @@ -0,0 +1,15 @@ +const pendingChangeRequestCommentUiSchema = { + 'ui:order': ['comment'], + comment: { + 'ui:widget': 'TextAreaWidget', + 'ui:title': '', + 'ui:options': { + boldTitle: true, + maxLength: 100, + showCharacterCount: true, + label: false, + }, + }, +}; + +export default pendingChangeRequestCommentUiSchema; diff --git a/app/schema/mutations/application/createPendingChangeRequest.ts b/app/schema/mutations/application/createPendingChangeRequest.ts new file mode 100644 index 0000000000..3b1acd57b8 --- /dev/null +++ b/app/schema/mutations/application/createPendingChangeRequest.ts @@ -0,0 +1,25 @@ +import { graphql } from 'react-relay'; +import { createPendingChangeRequestMutation } from '__generated__/createPendingChangeRequestMutation.graphql'; +import useMutationWithErrorMessage from '../useMutationWithErrorMessage'; + +const mutation = graphql` + mutation createPendingChangeRequestMutation( + $input: CreateApplicationPendingChangeRequestInput! + ) { + createApplicationPendingChangeRequest(input: $input) { + applicationPendingChangeRequest { + isPending + comment + } + } + } +`; + +const useCreatePendingChangeRequestMutation = () => + useMutationWithErrorMessage( + mutation, + () => + 'An error occurred while attempting to create application pending change request.' + ); + +export { mutation, useCreatePendingChangeRequestMutation }; diff --git a/app/schema/schema.graphql b/app/schema/schema.graphql index d3f64d5ba9..d120513cca 100644 --- a/app/schema/schema.graphql +++ b/app/schema/schema.graphql @@ -581,6 +581,42 @@ type Query implements Node { filter: ApplicationPackageFilter ): ApplicationPackagesConnection + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + allApplicationPendingChangeRequests( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection + """ Reads and enables pagination through a set of `ApplicationProjectType`. """ @@ -1622,6 +1658,7 @@ type Query implements Node { applicationMilestoneDataByRowId(rowId: Int!): ApplicationMilestoneData applicationMilestoneExcelDataByRowId(rowId: Int!): ApplicationMilestoneExcelData applicationPackageByRowId(rowId: Int!): ApplicationPackage + applicationPendingChangeRequestByRowId(rowId: Int!): ApplicationPendingChangeRequest applicationProjectTypeByRowId(rowId: Int!): ApplicationProjectType applicationRfiDataByRfiDataIdAndApplicationId(rfiDataId: Int!, applicationId: Int!): ApplicationRfiData applicationSowDataByRowId(rowId: Int!): ApplicationSowData @@ -1837,6 +1874,16 @@ type Query implements Node { id: ID! ): ApplicationPackage + """ + Reads a single `ApplicationPendingChangeRequest` using its globally unique `ID`. + """ + applicationPendingChangeRequest( + """ + The globally unique `ID` to be used in selecting a single `ApplicationPendingChangeRequest`. + """ + id: ID! + ): ApplicationPendingChangeRequest + """ Reads a single `ApplicationProjectType` using its globally unique `ID`. """ @@ -5937,8 +5984,10 @@ type CcbcUser implements Node { filter: NotificationFilter ): NotificationsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserCreatedByAndUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5957,22 +6006,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 - ): CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserCreatedByAndArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -5991,56 +6042,24 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 - ): CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserUpdatedByAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! - """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 - ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserUpdatedByAndArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6059,22 +6078,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 `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 - ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserArchivedByAndCreatedBy( + ccbcUsersByCcbcUserCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6105,10 +6124,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserArchivedByAndUpdatedBy( + ccbcUsersByCcbcUserCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6139,10 +6158,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCreatedByAndUpdatedBy( + ccbcUsersByCcbcUserUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6173,10 +6192,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCreatedByAndArchivedBy( + ccbcUsersByCcbcUserUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6207,44 +6226,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeCreatedByAndCounterId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeUpdatedByAndCreatedBy( + ccbcUsersByCcbcUserArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6275,10 +6260,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeUpdatedByAndArchivedBy( + ccbcUsersByCcbcUserArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6309,44 +6294,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeUpdatedByAndCounterId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeArchivedByAndCreatedBy( + ccbcUsersByIntakeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6377,10 +6328,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeArchivedByAndUpdatedBy( + ccbcUsersByIntakeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6411,10 +6362,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeArchivedByAndCounterId( + gaplessCountersByIntakeCreatedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -6445,146 +6396,10 @@ type CcbcUser implements Node { 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! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCreatedByAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCreatedByAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationUpdatedByAndIntakeId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: IntakeCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: IntakeFilter - ): CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection! + ): CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationUpdatedByAndCreatedBy( + ccbcUsersByIntakeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6615,10 +6430,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationUpdatedByAndArchivedBy( + ccbcUsersByIntakeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6649,10 +6464,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationArchivedByAndIntakeId( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeUpdatedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -6671,22 +6486,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 `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationArchivedByAndCreatedBy( + ccbcUsersByIntakeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6717,10 +6532,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationArchivedByAndUpdatedBy( + ccbcUsersByIntakeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6751,10 +6566,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusCreatedByAndApplicationId( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeArchivedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -6773,22 +6588,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 - ): CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusCreatedByAndStatus( + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationCreatedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -6807,22 +6622,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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusTypeCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection! + filter: IntakeFilter + ): CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusCreatedByAndArchivedBy( + ccbcUsersByApplicationCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6853,10 +6668,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusCreatedByAndUpdatedBy( + ccbcUsersByApplicationCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6887,10 +6702,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusArchivedByAndApplicationId( + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationUpdatedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -6909,22 +6724,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection! + filter: IntakeFilter + ): CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusArchivedByAndStatus( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6943,22 +6758,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatusType`.""" - orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusArchivedByAndCreatedBy( + ccbcUsersByApplicationUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6989,10 +6804,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationArchivedByAndIntakeId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusArchivedByAndUpdatedBy( + ccbcUsersByApplicationArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7023,10 +6872,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationArchivedByAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusUpdatedByAndApplicationId( + applicationsByApplicationStatusCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7057,10 +6940,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusUpdatedByAndStatus( + applicationStatusTypesByApplicationStatusCreatedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -7091,10 +6974,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection! + ): CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusUpdatedByAndCreatedBy( + ccbcUsersByApplicationStatusCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7125,10 +7008,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusUpdatedByAndArchivedBy( + ccbcUsersByApplicationStatusCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7159,10 +7042,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentCreatedByAndApplicationId( + applicationsByApplicationStatusArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7193,10 +7076,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentCreatedByAndApplicationStatusId( + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusArchivedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -7215,22 +7098,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection! + filter: ApplicationStatusTypeFilter + ): CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentCreatedByAndUpdatedBy( + ccbcUsersByApplicationStatusArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7261,10 +7144,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentCreatedByAndArchivedBy( + ccbcUsersByApplicationStatusArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7295,10 +7178,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentUpdatedByAndApplicationId( + applicationsByApplicationStatusUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7329,44 +7212,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentUpdatedByAndApplicationStatusId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusUpdatedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -7385,22 +7234,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 - ): CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationStatusTypeFilter + ): CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentUpdatedByAndArchivedBy( + ccbcUsersByApplicationStatusUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7431,10 +7280,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusUpdatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentArchivedByAndApplicationId( + applicationsByAttachmentCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7465,10 +7348,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentArchivedByAndApplicationStatusId( + applicationStatusesByAttachmentCreatedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -7499,10 +7382,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationStatusFilter - ): CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection! + ): CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentArchivedByAndCreatedBy( + ccbcUsersByAttachmentCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7533,10 +7416,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentArchivedByAndUpdatedBy( + ccbcUsersByAttachmentCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7567,10 +7450,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7589,22 +7472,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentUpdatedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -7623,22 +7506,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationStatusFilter + ): CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataCreatedByAndArchivedBy( + ccbcUsersByAttachmentUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7669,10 +7552,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataCreatedByAndFormSchemaId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7691,22 +7574,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormFilter - ): CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7725,22 +7608,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 + ): CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentArchivedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -7759,22 +7642,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 - ): CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationStatusFilter + ): CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataUpdatedByAndArchivedBy( + ccbcUsersByAttachmentArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7805,10 +7688,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataUpdatedByAndFormSchemaId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7827,22 +7710,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormFilter - ): CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeId( + formDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -7873,10 +7756,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection! + ): CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataArchivedByAndCreatedBy( + ccbcUsersByFormDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7907,10 +7790,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataArchivedByAndUpdatedBy( + ccbcUsersByFormDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7941,10 +7824,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Form`.""" - formsByFormDataArchivedByAndFormSchemaId( + formsByFormDataCreatedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -7975,10 +7858,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: FormFilter - ): CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection! + ): CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -7997,22 +7880,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 - ): CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection! + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystCreatedByAndArchivedBy( + ccbcUsersByFormDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8043,10 +7926,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystUpdatedByAndCreatedBy( + ccbcUsersByFormDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8077,10 +7960,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataUpdatedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -8099,22 +7982,56 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 - ): CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection! + + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `FormDataStatusType`.""" + orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataStatusTypeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataStatusTypeFilter + ): CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystArchivedByAndCreatedBy( + ccbcUsersByFormDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8145,10 +8062,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystArchivedByAndUpdatedBy( + ccbcUsersByFormDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8179,10 +8096,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadCreatedByAndApplicationId( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataArchivedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -8201,22 +8118,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 - ): CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadCreatedByAndAnalystId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnalystCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8235,22 +8152,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadCreatedByAndUpdatedBy( + ccbcUsersByAnalystCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8281,10 +8198,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadCreatedByAndArchivedBy( + ccbcUsersByAnalystUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8315,44 +8232,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadUpdatedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadUpdatedByAndAnalystId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnalystUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8371,22 +8254,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadUpdatedByAndCreatedBy( + ccbcUsersByAnalystArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8417,10 +8300,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadUpdatedByAndArchivedBy( + ccbcUsersByAnalystArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8451,10 +8334,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadArchivedByAndApplicationId( + applicationsByApplicationAnalystLeadCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8485,10 +8368,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadArchivedByAndAnalystId( + analystsByApplicationAnalystLeadCreatedByAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -8519,10 +8402,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: AnalystFilter - ): CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection! + ): CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadArchivedByAndCreatedBy( + ccbcUsersByApplicationAnalystLeadCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8553,10 +8436,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadArchivedByAndUpdatedBy( + ccbcUsersByApplicationAnalystLeadCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8587,10 +8470,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnalystLeadUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8609,22 +8492,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiDataStatusType`.""" - orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataStatusTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataStatusTypeFilter - ): CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadUpdatedByAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -8643,22 +8526,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 - ): CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyConnection! + filter: AnalystFilter + ): CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataCreatedByAndArchivedBy( + ccbcUsersByApplicationAnalystLeadUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8689,10 +8572,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8711,22 +8594,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiDataStatusType`.""" - orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataStatusTypeFilter - ): CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnalystLeadArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8745,22 +8628,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadArchivedByAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -8779,22 +8662,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 - ): CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection! + filter: AnalystFilter + ): CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection! - """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8813,22 +8696,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiDataStatusType`.""" - orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataStatusTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataStatusTypeFilter - ): CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataArchivedByAndCreatedBy( + ccbcUsersByApplicationAnalystLeadArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8859,10 +8742,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `RfiDataStatusType`.""" + rfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -8881,22 +8764,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 `RfiDataStatusType`.""" + orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: RfiDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection! + filter: RfiDataStatusTypeFilter + ): CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByRfiDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8915,22 +8798,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 + ): CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataCreatedByAndAssessmentDataType( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByRfiDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8949,22 +8832,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentType`.""" - orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `RfiDataStatusType`.""" + rfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -8983,22 +8866,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 `RfiDataStatusType`.""" + orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: RfiDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection! + filter: RfiDataStatusTypeFilter + ): CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataCreatedByAndArchivedBy( + ccbcUsersByRfiDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9029,10 +8912,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByRfiDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9051,22 +8934,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataUpdatedByAndAssessmentDataType( + """Reads and enables pagination through a set of `RfiDataStatusType`.""" + rfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -9085,22 +8968,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 `RfiDataStatusType`.""" + orderBy: [RfiDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentTypeCondition + condition: RfiDataStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection! + filter: RfiDataStatusTypeFilter + ): CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataUpdatedByAndCreatedBy( + ccbcUsersByRfiDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9131,10 +9014,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataUpdatedByAndArchivedBy( + ccbcUsersByRfiDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9165,10 +9048,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataArchivedByAndApplicationId( + applicationsByAssessmentDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9199,10 +9082,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataArchivedByAndAssessmentDataType( + assessmentTypesByAssessmentDataCreatedByAndAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -9233,10 +9116,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection! + ): CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataArchivedByAndCreatedBy( + ccbcUsersByAssessmentDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9267,10 +9150,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataArchivedByAndUpdatedBy( + ccbcUsersByAssessmentDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9301,10 +9184,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageCreatedByAndApplicationId( + applicationsByAssessmentDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9335,10 +9218,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataUpdatedByAndAssessmentDataType( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentTypeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentTypeFilter + ): CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageCreatedByAndUpdatedBy( + ccbcUsersByAssessmentDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9369,10 +9286,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageCreatedByAndArchivedBy( + ccbcUsersByAssessmentDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9403,10 +9320,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageUpdatedByAndApplicationId( + applicationsByAssessmentDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9437,10 +9354,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection! + ): 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`.""" - ccbcUsersByApplicationPackageUpdatedByAndCreatedBy( + ccbcUsersByAssessmentDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9471,10 +9422,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageUpdatedByAndArchivedBy( + ccbcUsersByAssessmentDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9505,10 +9456,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageArchivedByAndApplicationId( + applicationsByApplicationPackageCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9539,10 +9490,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageArchivedByAndCreatedBy( + ccbcUsersByApplicationPackageCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9573,10 +9524,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageArchivedByAndUpdatedBy( + ccbcUsersByApplicationPackageCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9607,10 +9558,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataCreatedByAndApplicationId( + applicationsByApplicationPackageUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9641,10 +9592,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationPackageUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9675,10 +9626,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataCreatedByAndArchivedBy( + ccbcUsersByApplicationPackageUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9709,10 +9660,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataUpdatedByAndApplicationId( + applicationsByApplicationPackageArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9743,10 +9694,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationPackageArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9777,10 +9728,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationPackageArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9811,10 +9762,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataArchivedByAndApplicationId( + applicationsByConditionalApprovalDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9845,10 +9796,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataArchivedByAndCreatedBy( + ccbcUsersByConditionalApprovalDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9879,10 +9830,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataArchivedByAndUpdatedBy( + ccbcUsersByConditionalApprovalDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9913,10 +9864,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByConditionalApprovalDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9935,22 +9886,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 + ): CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataCreatedByAndArchivedBy( + ccbcUsersByConditionalApprovalDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9981,10 +9932,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataUpdatedByAndCreatedBy( + ccbcUsersByConditionalApprovalDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10015,10 +9966,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByConditionalApprovalDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10037,22 +9988,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 + ): CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataArchivedByAndCreatedBy( + ccbcUsersByConditionalApprovalDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10083,10 +10034,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataArchivedByAndUpdatedBy( + ccbcUsersByConditionalApprovalDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10117,44 +10068,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataCreatedByAndBatchId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: GisDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByGisDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10173,22 +10090,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 + ): CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataCreatedByAndUpdatedBy( + ccbcUsersByGisDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10219,10 +10136,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataCreatedByAndArchivedBy( + ccbcUsersByGisDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10253,44 +10170,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataUpdatedByAndBatchId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: GisDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByGisDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10309,22 +10192,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 + ): CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataUpdatedByAndCreatedBy( + ccbcUsersByGisDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10355,10 +10238,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataUpdatedByAndArchivedBy( + ccbcUsersByGisDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10389,10 +10272,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataArchivedByAndBatchId( + gisDataByApplicationGisDataCreatedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -10423,10 +10306,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection! + ): CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataArchivedByAndApplicationId( + applicationsByApplicationGisDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10457,78 +10340,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataArchivedByAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataArchivedByAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementCreatedByAndUpdatedBy( + ccbcUsersByApplicationGisDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10559,10 +10374,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementCreatedByAndArchivedBy( + ccbcUsersByApplicationGisDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10593,10 +10408,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataUpdatedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -10615,22 +10430,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10649,22 +10464,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 + ): CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementArchivedByAndCreatedBy( + ccbcUsersByApplicationGisDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10695,10 +10510,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementArchivedByAndUpdatedBy( + ccbcUsersByApplicationGisDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10729,10 +10544,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementCreatedByAndAnnouncementId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataArchivedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -10751,22 +10566,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 `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementCreatedByAndApplicationId( + applicationsByApplicationGisDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10797,10 +10612,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementCreatedByAndUpdatedBy( + ccbcUsersByApplicationGisDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10831,10 +10646,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementCreatedByAndArchivedBy( + ccbcUsersByApplicationGisDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10865,44 +10680,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementUpdatedByAndAnnouncementId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """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: AnnouncementCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnnouncementFilter - ): CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnnouncementCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10921,22 +10702,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementUpdatedByAndCreatedBy( + ccbcUsersByAnnouncementCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10967,10 +10748,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementUpdatedByAndArchivedBy( + ccbcUsersByAnnouncementUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11001,10 +10782,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementArchivedByAndAnnouncementId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnnouncementUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11023,22 +10804,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnnouncementArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11057,22 +10838,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 - ): CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementArchivedByAndCreatedBy( + ccbcUsersByAnnouncementArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11103,10 +10884,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementCreatedByAndAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -11125,22 +10906,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 - ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection! + filter: AnnouncementFilter + ): CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataCreatedByAndApplicationId( + applicationsByApplicationAnnouncementCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11171,10 +10952,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationAnnouncementCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11205,10 +10986,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataCreatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncementCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11239,10 +11020,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementUpdatedByAndAnnouncementId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: AnnouncementCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnnouncementFilter + ): CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataUpdatedByAndApplicationId( + applicationsByApplicationAnnouncementUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11273,10 +11088,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationAnnouncementUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11307,10 +11122,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncementUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11341,10 +11156,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementArchivedByAndAnnouncementId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: AnnouncementCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnnouncementFilter + ): CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataArchivedByAndApplicationId( + applicationsByApplicationAnnouncementArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11375,10 +11224,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataArchivedByAndCreatedBy( + ccbcUsersByApplicationAnnouncementArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11409,10 +11258,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationAnnouncementArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11443,10 +11292,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2CreatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationSowDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11465,22 +11314,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2CreatedByAndUpdatedBy( + ccbcUsersByApplicationSowDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11511,10 +11360,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2CreatedByAndArchivedBy( + ccbcUsersByApplicationSowDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11545,10 +11394,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2UpdatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationSowDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11567,22 +11416,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2UpdatedByAndCreatedBy( + ccbcUsersByApplicationSowDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11613,10 +11462,78 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2UpdatedByAndArchivedBy( + ccbcUsersByApplicationSowDataUpdatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationSowDataArchivedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11647,78 +11564,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2ArchivedByAndSowId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationSowDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2ArchivedByAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2ArchivedByAndUpdatedBy( + ccbcUsersByApplicationSowDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11749,10 +11598,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1CreatedByAndSowId( + applicationSowDataBySowTab2CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -11783,10 +11632,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1CreatedByAndUpdatedBy( + ccbcUsersBySowTab2CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11817,10 +11666,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1CreatedByAndArchivedBy( + ccbcUsersBySowTab2CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11851,10 +11700,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1UpdatedByAndSowId( + applicationSowDataBySowTab2UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -11885,10 +11734,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1UpdatedByAndCreatedBy( + ccbcUsersBySowTab2UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11919,10 +11768,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1UpdatedByAndArchivedBy( + ccbcUsersBySowTab2UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11953,10 +11802,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1ArchivedByAndSowId( + applicationSowDataBySowTab2ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -11987,112 +11836,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1ArchivedByAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1ArchivedByAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataCreatedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataCreatedByAndUpdatedBy( + ccbcUsersBySowTab2ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12123,10 +11870,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataCreatedByAndArchivedBy( + ccbcUsersBySowTab2ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12157,10 +11904,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -12179,22 +11926,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataUpdatedByAndCreatedBy( + ccbcUsersBySowTab1CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12225,10 +11972,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataUpdatedByAndArchivedBy( + ccbcUsersBySowTab1CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12259,10 +12006,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -12281,22 +12028,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataArchivedByAndCreatedBy( + ccbcUsersBySowTab1UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12327,10 +12074,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataArchivedByAndUpdatedBy( + ccbcUsersBySowTab1UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12361,10 +12108,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7CreatedByAndSowId( + applicationSowDataBySowTab1ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -12395,10 +12142,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7CreatedByAndUpdatedBy( + ccbcUsersBySowTab1ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12429,10 +12176,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7CreatedByAndArchivedBy( + ccbcUsersBySowTab1ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12463,10 +12210,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7UpdatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByProjectInformationDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12485,22 +12232,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 + ): CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7UpdatedByAndCreatedBy( + ccbcUsersByProjectInformationDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12531,10 +12278,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7UpdatedByAndArchivedBy( + ccbcUsersByProjectInformationDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12565,10 +12312,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7ArchivedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByProjectInformationDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12587,22 +12334,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 + ): CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7ArchivedByAndCreatedBy( + ccbcUsersByProjectInformationDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12633,10 +12380,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7ArchivedByAndUpdatedBy( + ccbcUsersByProjectInformationDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12667,10 +12414,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8CreatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByProjectInformationDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12689,22 +12436,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 + ): CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8CreatedByAndUpdatedBy( + ccbcUsersByProjectInformationDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12735,10 +12482,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8CreatedByAndArchivedBy( + ccbcUsersByProjectInformationDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12769,10 +12516,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8UpdatedByAndSowId( + applicationSowDataBySowTab7CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -12803,10 +12550,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8UpdatedByAndCreatedBy( + ccbcUsersBySowTab7CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12837,10 +12584,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8UpdatedByAndArchivedBy( + ccbcUsersBySowTab7CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12871,10 +12618,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8ArchivedByAndSowId( + applicationSowDataBySowTab7UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -12905,10 +12652,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8ArchivedByAndCreatedBy( + ccbcUsersBySowTab7UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12939,10 +12686,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8ArchivedByAndUpdatedBy( + ccbcUsersBySowTab7UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12973,10 +12720,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab7ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -12995,22 +12742,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataCreatedByAndUpdatedBy( + ccbcUsersBySowTab7ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13041,10 +12788,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataCreatedByAndArchivedBy( + ccbcUsersBySowTab7ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13075,10 +12822,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13097,22 +12844,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataUpdatedByAndCreatedBy( + ccbcUsersBySowTab8CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13143,10 +12890,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataUpdatedByAndArchivedBy( + ccbcUsersBySowTab8CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13177,10 +12924,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13199,22 +12946,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataArchivedByAndCreatedBy( + ccbcUsersBySowTab8UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13245,10 +12992,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataArchivedByAndUpdatedBy( + ccbcUsersBySowTab8UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13279,10 +13026,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13301,22 +13048,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 - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedBy( + ccbcUsersBySowTab8ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13347,10 +13094,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedBy( + ccbcUsersBySowTab8ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13381,10 +13128,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationId( + applicationsByChangeRequestDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13415,10 +13162,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedBy( + ccbcUsersByChangeRequestDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13449,10 +13196,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedBy( + ccbcUsersByChangeRequestDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13483,10 +13230,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationId( + applicationsByChangeRequestDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13517,10 +13264,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedBy( + ccbcUsersByChangeRequestDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13551,10 +13298,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedBy( + ccbcUsersByChangeRequestDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13585,10 +13332,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationId( + applicationsByChangeRequestDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13619,10 +13366,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy( + ccbcUsersByChangeRequestDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13653,10 +13400,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedBy( + ccbcUsersByChangeRequestDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13687,10 +13434,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13721,10 +13468,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13755,10 +13502,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13789,10 +13536,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13823,10 +13570,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13857,10 +13604,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13891,10 +13638,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataCreatedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13925,10 +13672,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13959,10 +13706,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataCreatedByAndArchivedBy( + ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13993,10 +13740,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataUpdatedByAndApplicationId( + applicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14027,10 +13774,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14061,10 +13808,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14095,10 +13842,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataArchivedByAndApplicationId( + applicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14129,10 +13876,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataArchivedByAndCreatedBy( + ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14163,10 +13910,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14197,10 +13944,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataCreatedByAndApplicationId( + applicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14231,10 +13978,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14265,10 +14012,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedBy( + ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14299,10 +14046,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataUpdatedByAndApplicationId( + applicationsByApplicationClaimsDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14333,10 +14080,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationClaimsDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14367,10 +14114,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationClaimsDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14401,10 +14148,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataArchivedByAndApplicationId( + applicationsByApplicationClaimsDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14435,10 +14182,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedBy( + ccbcUsersByApplicationClaimsDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14469,10 +14216,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationClaimsDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14503,10 +14250,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataCreatedByAndApplicationId( + applicationsByApplicationClaimsDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14537,10 +14284,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationClaimsDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14571,10 +14318,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataCreatedByAndArchivedBy( + ccbcUsersByApplicationClaimsDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14605,10 +14352,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataUpdatedByAndApplicationId( + applicationsByApplicationClaimsExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14639,10 +14386,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14673,10 +14420,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14707,10 +14454,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataArchivedByAndApplicationId( + applicationsByApplicationClaimsExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14741,10 +14488,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataArchivedByAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14775,10 +14522,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14809,10 +14556,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataCreatedByAndApplicationId( + applicationsByApplicationClaimsExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14843,10 +14590,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14877,10 +14624,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14911,10 +14658,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationId( + applicationsByApplicationMilestoneDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14945,10 +14692,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationMilestoneDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14979,10 +14726,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15013,10 +14760,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataArchivedByAndApplicationId( + applicationsByApplicationMilestoneDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15047,10 +14794,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedBy( + ccbcUsersByApplicationMilestoneDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15081,10 +14828,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15115,10 +14862,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneDataArchivedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCreatedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15149,10 +14930,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCreatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15183,10 +14964,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneExcelDataCreatedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectUpdatedByAndCreatedBy( + ccbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15217,10 +15032,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectUpdatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15251,10 +15066,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectArchivedByAndCreatedBy( + ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15285,10 +15134,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectArchivedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15319,10 +15168,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionCreatedByAndApplicationId( + applicationsByApplicationMilestoneExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15353,10 +15202,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15387,10 +15236,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionCreatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15421,10 +15270,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15443,22 +15292,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedBy( + ccbcUsersByCbcProjectCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15489,10 +15338,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedBy( + ccbcUsersByCbcProjectUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15523,10 +15372,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationInternalDescriptionArchivedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcProjectUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15545,22 +15394,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionArchivedByAndCreatedBy( + ccbcUsersByCbcProjectArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15591,10 +15440,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedBy( + ccbcUsersByCbcProjectArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15625,10 +15474,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeCreatedByAndApplicationId( + applicationsByApplicationInternalDescriptionCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15659,10 +15508,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeCreatedByAndUpdatedBy( + ccbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15693,10 +15542,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeCreatedByAndArchivedBy( + ccbcUsersByApplicationInternalDescriptionCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15727,10 +15576,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeUpdatedByAndApplicationId( + applicationsByApplicationInternalDescriptionUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15761,10 +15610,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeUpdatedByAndCreatedBy( + ccbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15795,10 +15644,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeUpdatedByAndArchivedBy( + ccbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15829,10 +15678,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationProjectTypeArchivedByAndApplicationId( + applicationsByApplicationInternalDescriptionArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15863,10 +15712,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeArchivedByAndCreatedBy( + ccbcUsersByApplicationInternalDescriptionArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15897,10 +15746,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeArchivedByAndUpdatedBy( + ccbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15931,10 +15780,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationProjectTypeCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15953,22 +15802,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordCreatedByAndArchivedBy( + ccbcUsersByApplicationProjectTypeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15999,10 +15848,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordUpdatedByAndCreatedBy( + ccbcUsersByApplicationProjectTypeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16033,10 +15882,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationProjectTypeUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16055,22 +15904,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordArchivedByAndCreatedBy( + ccbcUsersByApplicationProjectTypeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16101,10 +15950,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordArchivedByAndUpdatedBy( + ccbcUsersByApplicationProjectTypeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16135,10 +15984,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationCreatedByAndApplicationId( + applicationsByApplicationProjectTypeArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16169,44 +16018,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationCreatedByAndEmailRecordId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: EmailRecordCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationCreatedByAndUpdatedBy( + ccbcUsersByApplicationProjectTypeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16237,10 +16052,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationCreatedByAndArchivedBy( + ccbcUsersByApplicationProjectTypeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16271,78 +16086,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationUpdatedByAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationUpdatedByAndEmailRecordId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: EmailRecordCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationUpdatedByAndCreatedBy( + ccbcUsersByEmailRecordCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16373,10 +16120,418 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationUpdatedByAndArchivedBy( + ccbcUsersByEmailRecordCreatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByEmailRecordUpdatedByAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByEmailRecordUpdatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByEmailRecordArchivedByAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByEmailRecordArchivedByAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByNotificationCreatedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationCreatedByAndEmailRecordId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: EmailRecordCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationCreatedByAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationCreatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByNotificationUpdatedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationUpdatedByAndEmailRecordId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: EmailRecordCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationUpdatedByAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16441,44 +16596,350 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationArchivedByAndEmailRecordId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: EmailRecordCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection! + ): CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationArchivedByAndEmailRecordId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: EmailRecordCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: EmailRecordFilter + ): CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationArchivedByAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationArchivedByAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestCreatedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationPendingChangeRequestUpdatedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + 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 `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`.""" - ccbcUsersByNotificationArchivedByAndCreatedBy( + ccbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16509,10 +16970,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationArchivedByAndUpdatedBy( + ccbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16543,7 +17004,7 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! } """A connection to a list of `CcbcUser` values.""" @@ -17361,6 +17822,30 @@ input CcbcUserFilter { """Some related `notificationsByArchivedBy` exist.""" notificationsByArchivedByExist: Boolean + """ + Filter by the object’s `applicationPendingChangeRequestsByCreatedBy` relation. + """ + applicationPendingChangeRequestsByCreatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + + """Some related `applicationPendingChangeRequestsByCreatedBy` exist.""" + applicationPendingChangeRequestsByCreatedByExist: Boolean + + """ + Filter by the object’s `applicationPendingChangeRequestsByUpdatedBy` relation. + """ + applicationPendingChangeRequestsByUpdatedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + + """Some related `applicationPendingChangeRequestsByUpdatedBy` exist.""" + applicationPendingChangeRequestsByUpdatedByExist: Boolean + + """ + Filter by the object’s `applicationPendingChangeRequestsByArchivedBy` relation. + """ + applicationPendingChangeRequestsByArchivedBy: CcbcUserToManyApplicationPendingChangeRequestFilter + + """Some related `applicationPendingChangeRequestsByArchivedBy` exist.""" + applicationPendingChangeRequestsByArchivedByExist: Boolean + """Filter by the object’s `keycloakJwtsBySub` relation.""" keycloakJwtsBySub: CcbcUserToManyKeycloakJwtFilter @@ -18096,6 +18581,14 @@ input ApplicationFilter { """Some related `notificationsByApplicationId` exist.""" notificationsByApplicationIdExist: Boolean + """ + Filter by the object’s `applicationPendingChangeRequestsByApplicationId` relation. + """ + applicationPendingChangeRequestsByApplicationId: ApplicationToManyApplicationPendingChangeRequestFilter + + """Some related `applicationPendingChangeRequestsByApplicationId` exist.""" + applicationPendingChangeRequestsByApplicationIdExist: Boolean + """Filter by the object’s `intakeByIntakeId` relation.""" intakeByIntakeId: IntakeFilter @@ -21484,6 +21977,94 @@ input EmailRecordToManyNotificationFilter { none: NotificationFilter } +""" +A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationToManyApplicationPendingChangeRequestFilter { + """ + Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPendingChangeRequestFilter + + """ + Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPendingChangeRequestFilter + + """ + No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPendingChangeRequestFilter +} + +""" +A filter to be used against `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input ApplicationPendingChangeRequestFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter + + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter + + """Filter by the object’s `isPending` field.""" + isPending: BooleanFilter + + """Filter by the object’s `comment` field.""" + comment: StringFilter + + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter + + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter + + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter + + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter + + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter + + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter + + """Filter by the object’s `applicationByApplicationId` relation.""" + applicationByApplicationId: ApplicationFilter + + """A related `applicationByApplicationId` exists.""" + applicationByApplicationIdExists: Boolean + + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter + + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean + + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter + + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [ApplicationPendingChangeRequestFilter!] + + """Checks for any expressions in this list.""" + or: [ApplicationPendingChangeRequestFilter!] + + """Negates the expression.""" + not: ApplicationPendingChangeRequestFilter +} + """ A filter to be used against `GaplessCounter` object types. All fields are combined with a logical ‘and.’ """ @@ -22450,6 +23031,26 @@ input CcbcUserToManyNotificationFilter { none: NotificationFilter } +""" +A filter to be used against many `ApplicationPendingChangeRequest` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyApplicationPendingChangeRequestFilter { + """ + Every related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: ApplicationPendingChangeRequestFilter + + """ + Some related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: ApplicationPendingChangeRequestFilter + + """ + No related `ApplicationPendingChangeRequest` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: ApplicationPendingChangeRequestFilter +} + """ A filter to be used against many `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ """ @@ -24143,6 +24744,42 @@ type Application implements Node { filter: NotificationFilter ): NotificationsConnection! + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! + """Reads and enables pagination through a set of `AssessmentData`.""" allAssessments( """Only read the first `n` values of the set.""" @@ -25577,10 +26214,112 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25611,10 +26350,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25645,10 +26384,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndArchivedBy( + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -25679,10 +26418,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedBy( + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25713,10 +26452,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25747,10 +26486,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedBy( + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -25781,10 +26520,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedBy( + ccbcUsersByApplicationClaimsDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25815,10 +26554,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationClaimsDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25849,10 +26588,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedBy( + ccbcUsersByApplicationClaimsDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -25883,10 +26622,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25917,10 +26656,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25951,10 +26690,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -25985,10 +26724,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedBy( + ccbcUsersByApplicationMilestoneDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26019,10 +26758,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26053,10 +26792,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedBy( + ccbcUsersByApplicationMilestoneDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -26087,10 +26826,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndCreatedBy( + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26121,10 +26860,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26155,10 +26894,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndArchivedBy( + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -26189,10 +26928,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedBy( + ccbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26223,10 +26962,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26257,10 +26996,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedBy( + ccbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -26291,10 +27030,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedBy( + ccbcUsersByApplicationProjectTypeApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26325,10 +27064,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedBy( + ccbcUsersByApplicationProjectTypeApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26359,10 +27098,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedBy( + ccbcUsersByApplicationProjectTypeApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -26393,10 +27132,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationApplicationIdAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -26415,22 +27154,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection! + filter: EmailRecordFilter + ): ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndUpdatedBy( + ccbcUsersByNotificationApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26461,10 +27200,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndArchivedBy( + ccbcUsersByNotificationApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26495,10 +27234,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationApplicationIdAndEmailRecordId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -26517,22 +27256,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndCreatedBy( + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26563,10 +27302,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndUpdatedBy( + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26597,10 +27336,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndArchivedBy( + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -26631,7 +27370,7 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection! } """A connection to a list of `ApplicationStatus` values.""" @@ -36305,6 +37044,159 @@ type NotificationsEdge { node: Notification } +"""A connection to a list of `ApplicationPendingChangeRequest` values.""" +type ApplicationPendingChangeRequestsConnection { + """A list of `ApplicationPendingChangeRequest` objects.""" + nodes: [ApplicationPendingChangeRequest]! + + """ + A list of edges which contains the `ApplicationPendingChangeRequest` and cursor to aid in pagination. + """ + edges: [ApplicationPendingChangeRequestsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationPendingChangeRequest` you could get from the connection. + """ + totalCount: Int! +} + +"""Table containing the pending change request details of the application""" +type ApplicationPendingChangeRequest implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Unique ID for the application_pending_change_request""" + rowId: Int! + + """ + ID of the application this application_pending_change_request belongs to + """ + applicationId: Int + + """Column defining if the change request pending or not""" + isPending: Boolean + + """ + Column containing the comment for the change request or completion of the change request + """ + comment: String + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """ + Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByArchivedBy: CcbcUser +} + +"""A `ApplicationPendingChangeRequest` edge in the connection.""" +type ApplicationPendingChangeRequestsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationPendingChangeRequest` at the end of the edge.""" + node: ApplicationPendingChangeRequest +} + +"""Methods to use when ordering `ApplicationPendingChangeRequest`.""" +enum ApplicationPendingChangeRequestsOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + IS_PENDING_ASC + IS_PENDING_DESC + COMMENT_ASC + COMMENT_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ApplicationPendingChangeRequest` object types. +All fields are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationPendingChangeRequestCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `isPending` field.""" + isPending: Boolean + + """Checks for equality with the object’s `comment` field.""" + comment: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + """A connection to a list of `Announcement` values.""" type AnnouncementsConnection { """A list of `Announcement` objects.""" @@ -40902,95 +41794,281 @@ type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToMan ): 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 -} - +"""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 +} + +""" +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 `Notification`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge!]! + + """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 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 `Notification`.""" + notificationsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection { + """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: [ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `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 `Notification`.""" + notificationsByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection { + """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: [ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge!]! + + """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 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 `Notification`.""" + notificationsByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! +} + """ -A condition to be used against `EmailRecord` 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 `ApplicationPendingChangeRequest`. """ -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 { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection { """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: [ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40999,16 +42077,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 `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 `Notification`.""" - notificationsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41027,32 +42109,32 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection { """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: [ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41061,16 +42143,20 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnec totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41089,32 +42175,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 `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 ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection { """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: [ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41123,16 +42209,20 @@ type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConne totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `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 `Notification`.""" - notificationsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -41151,19 +42241,19 @@ 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 `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 `Application` edge in the connection.""" @@ -49819,36 +50909,164 @@ type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge { } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +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 `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + """ + edges: [CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Application` edge in the connection, with data from `ApplicationGisData`. +""" +type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge { + """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( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge!]! + + """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 CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { """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( + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -49883,36 +51101,36 @@ type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToMany } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection { - """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 `ApplicationGisData`, 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: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge!]! + 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 `ApplicationGisData`. +A `GisData` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { +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 `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -49947,36 +51165,36 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection { + """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 `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge { """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( + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -50011,36 +51229,36 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection { + """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 `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge!]! """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 `ApplicationGisData`. """ -type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { """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( + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50075,36 +51293,36 @@ type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge { } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50139,16 +51357,16 @@ type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToMan } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50157,18 +51375,16 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50187,32 +51403,32 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50221,18 +51437,16 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -50251,32 +51465,32 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50286,7 +51500,7 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -50294,7 +51508,7 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `Announcement`.""" - announcementsByUpdatedBy( + announcementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50331,14 +51545,14 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50348,7 +51562,7 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -50393,14 +51607,14 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `Announcement`. """ -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50410,7 +51624,7 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -50453,34 +51667,100 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `Announcement`. +""" +type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + + """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 `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: AnnouncementCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnnouncementFilter + ): AnnouncementsConnection! +} + +""" +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { +""" +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Announcement` at the end of the edge.""" + node: Announcement - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -50499,50 +51779,54 @@ 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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { - """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 `Announcement`, 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: [CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge!]! + 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 `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -50561,32 +51845,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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50595,16 +51879,20 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50623,54 +51911,54 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnnouncementsByAnnouncementId( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -50705,38 +51993,38 @@ type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdMan } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Announcement` at the end of the edge.""" + node: Announcement """ Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnnouncementsByApplicationId( + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -50771,38 +52059,38 @@ type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyT } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnnouncementsByUpdatedBy( + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -50839,14 +52127,14 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEd """ A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50858,7 +52146,7 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyC """ A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -50868,7 +52156,7 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyE """ Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnnouncementsByArchivedBy( + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50903,38 +52191,38 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyE } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnnouncementsByAnnouncementId( + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -50969,38 +52257,38 @@ type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdMan } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Announcement` at the end of the edge.""" + node: Announcement """ Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnnouncementsByApplicationId( + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -51035,38 +52323,38 @@ type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyT } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnnouncementsByCreatedBy( + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -51103,14 +52391,14 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEd """ A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51122,7 +52410,7 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyC """ A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -51132,7 +52420,7 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyE """ Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnnouncementsByArchivedBy( + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51167,38 +52455,38 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyE } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - applicationAnnouncementsByAnnouncementId( + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51233,16 +52521,16 @@ type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdMa } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51252,19 +52540,17 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -51283,32 +52569,32 @@ type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51318,19 +52604,17 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51349,32 +52633,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51384,19 +52668,17 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -51415,32 +52697,32 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51452,7 +52734,7 @@ type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToMany """ A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -51497,14 +52779,14 @@ type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51516,7 +52798,7 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnect """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -51524,7 +52806,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 @@ -51561,14 +52843,14 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51580,7 +52862,7 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnec """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -51625,14 +52907,14 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { """ A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51644,7 +52926,7 @@ type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToMany """ A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -51689,14 +52971,14 @@ type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51708,7 +52990,7 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnect """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -51753,14 +53035,14 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51772,7 +53054,7 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnec """ A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -51780,7 +53062,7 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51815,36 +53097,38 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `Application` values, with data from `ApplicationSowData`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationSowData`. +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -51863,32 +53147,30 @@ type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51897,18 +53179,16 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51927,32 +53207,30 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51961,18 +53239,16 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -51991,32 +53267,32 @@ type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } """ A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection { """A list of `ApplicationSowData` objects.""" nodes: [ApplicationSowData]! """ A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52030,7 +53306,7 @@ type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { """ A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52073,14 +53349,14 @@ type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52090,7 +53366,7 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52098,7 +53374,7 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52133,14 +53409,14 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52150,7 +53426,7 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52195,14 +53471,14 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { """ A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { """A list of `ApplicationSowData` objects.""" nodes: [ApplicationSowData]! """ A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52216,7 +53492,7 @@ type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection { """ A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52259,14 +53535,14 @@ type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52276,7 +53552,7 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52319,14 +53595,14 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52336,7 +53612,7 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52344,7 +53620,7 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52379,16 +53655,16 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { """A list of `ApplicationSowData` objects.""" nodes: [ApplicationSowData]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52400,17 +53676,17 @@ type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. """ -type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `ApplicationSowData` at the end of the edge.""" node: ApplicationSowData - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -52429,30 +53705,30 @@ type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52461,16 +53737,16 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52489,30 +53765,30 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52521,16 +53797,16 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -52549,32 +53825,32 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { """A list of `ApplicationSowData` objects.""" nodes: [ApplicationSowData]! """ A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52588,7 +53864,7 @@ type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { """ A `ApplicationSowData` edge in the connection, with data from `SowTab1`. """ -type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52631,14 +53907,14 @@ type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52648,7 +53924,7 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52656,7 +53932,7 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52691,14 +53967,14 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52708,7 +53984,7 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -52750,39 +54026,159 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { ): SowTab1SConnection! } -""" -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. -""" -type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +""" +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +""" +type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! + + """ + A list of edges which contains the `ApplicationSowData`, info from the `SowTab1`, and the cursor to aid in pagination. + """ + edges: [CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ + totalCount: Int! +} + +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +""" +type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData + + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: SowTab1Condition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab1Filter + ): SowTab1SConnection! +} + +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge!]! + + """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 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 `SowTab1`.""" + sowTab1SByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: SowTab1Condition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab1Filter + ): SowTab1SConnection! +} + +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection { + """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 `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge!]! """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 `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { """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( + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52816,33 +54212,39 @@ type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { ): SowTab1SConnection! } -"""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 `ProjectInformationData`. +""" +type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection { + """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge!]! + 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 `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { +""" +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 `SowTab1`.""" - sowTab1SByCreatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -52861,30 +54263,32 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52893,16 +54297,20 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52921,54 +54329,54 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection { + """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge!]! """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`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge { """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 `ProjectInformationData`. + """ + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -52987,48 +54395,54 @@ type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection { - """A 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 `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge!]! + 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 `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { +""" +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 `SowTab1`.""" - sowTab1SByCreatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -53047,30 +54461,32 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53079,16 +54495,20 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +""" +type 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 `SowTab1`.""" - sowTab1SByUpdatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53107,54 +54527,54 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ProjectInformationData`, 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: [CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ Reads and enables pagination through a set of `ProjectInformationData`. """ - projectInformationDataByApplicationId( + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53189,38 +54609,38 @@ type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyTo } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge!]! + 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 `ProjectInformationData`. +A `Application` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge { +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 `ProjectInformationData`. """ - projectInformationDataByUpdatedBy( + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -53257,14 +54677,14 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdg """ A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53276,7 +54696,7 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyCo """ A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -53286,7 +54706,7 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEd """ Reads and enables pagination through a set of `ProjectInformationData`. """ - projectInformationDataByArchivedBy( + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53321,38 +54741,38 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEd } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection { - """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 `ProjectInformationData`, 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: [CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge!]! + 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 `ProjectInformationData`. +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge { +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 `ProjectInformationData`. """ - projectInformationDataByApplicationId( + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53387,16 +54807,80 @@ type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyTo } """ -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! + + """ + A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. + """ + edges: [CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ + totalCount: Int! +} + +""" +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +""" +type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData + + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: SowTab7Condition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab7Filter + ): SowTab7SConnection! +} + +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53405,20 +54889,16 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53437,32 +54917,30 @@ 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 `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53471,20 +54949,16 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53503,54 +54977,54 @@ type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ProjectInformationData`. +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. """ -type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByApplicationId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -53569,32 +55043,30 @@ type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53603,20 +55075,16 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type 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 `ProjectInformationData`. - """ - projectInformationDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53635,32 +55103,30 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53669,20 +55135,16 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type 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 `ProjectInformationData`. - """ - projectInformationDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53701,32 +55163,32 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { """A list of `ApplicationSowData` objects.""" nodes: [ApplicationSowData]! """ A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53740,7 +55202,7 @@ type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection { """ A `ApplicationSowData` edge in the connection, with data from `SowTab7`. """ -type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -53783,14 +55245,14 @@ type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53800,7 +55262,7 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -53808,7 +55270,7 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53843,14 +55305,14 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53860,7 +55322,7 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -53868,7 +55330,7 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53903,16 +55365,16 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection { """A list of `ApplicationSowData` objects.""" nodes: [ApplicationSowData]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53924,17 +55386,17 @@ type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. """ -type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `ApplicationSowData` at the end of the edge.""" node: ApplicationSowData - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -53953,30 +55415,30 @@ 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 `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53985,16 +55447,16 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54013,30 +55475,30 @@ 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 `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54045,16 +55507,16 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54073,32 +55535,32 @@ 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 `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection { """A list of `ApplicationSowData` objects.""" nodes: [ApplicationSowData]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54110,17 +55572,17 @@ type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. """ -type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `ApplicationSowData` at the end of the edge.""" node: ApplicationSowData - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -54139,30 +55601,30 @@ type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54171,16 +55633,16 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54199,30 +55661,30 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54231,16 +55693,16 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54259,32 +55721,32 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection { """A list of `ApplicationSowData` objects.""" nodes: [ApplicationSowData]! """ A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54298,7 +55760,7 @@ type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection { """ A `ApplicationSowData` edge in the connection, with data from `SowTab8`. """ -type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54341,14 +55803,14 @@ type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54358,7 +55820,7 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54366,7 +55828,7 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54401,14 +55863,14 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { } """A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54418,7 +55880,7 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54426,7 +55888,7 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54461,38 +55923,36 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab8`. +A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54511,30 +55971,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 `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54543,16 +56005,18 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54571,30 +56035,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 `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54603,16 +56069,18 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `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 `SowTab8`.""" - sowTab8SByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54631,54 +56099,52 @@ type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge!]! + edges: [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 `SowTab8`. +A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { +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 `SowTab8`.""" - sowTab8SBySowId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54697,30 +56163,32 @@ type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54729,16 +56197,18 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type 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 `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54757,30 +56227,32 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54789,16 +56261,18 @@ type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `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 `SowTab8`.""" - sowTab8SByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54817,32 +56291,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 `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54854,7 +56328,7 @@ type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyC """ A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54899,14 +56373,14 @@ type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyE """ A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54918,7 +56392,7 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnecti """ A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54926,7 +56400,7 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54963,14 +56437,14 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54982,7 +56456,7 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnect """ A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -54990,7 +56464,7 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55025,16 +56499,16 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55044,17 +56518,19 @@ type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyC } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge { +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 `ChangeRequestData`.""" - changeRequestDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55073,32 +56549,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55108,17 +56586,19 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnecti } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55137,32 +56617,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection { """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: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55172,17 +56654,19 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { +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 `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55201,32 +56685,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55236,17 +56722,19 @@ type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge { +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 `ChangeRequestData`.""" - changeRequestDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55265,32 +56753,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection { """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: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55300,17 +56790,19 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { +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 `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55329,32 +56821,34 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55364,17 +56858,19 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { +type 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 `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55393,32 +56889,34 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55430,7 +56928,7 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApp """ A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -55479,14 +56977,82 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApp """ A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCommunityProgressReportDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55498,7 +57064,7 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdate """ A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -55545,38 +57111,38 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdate } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationCommunityProgressReportDataByArchivedBy( + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55595,56 +57161,54 @@ 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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `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: [CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationCommunityProgressReportDataByApplicationId( + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55663,34 +57227,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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection { """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: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55700,9 +57262,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreate } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -55710,9 +57272,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreate 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 @@ -55731,56 +57293,54 @@ 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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationCommunityProgressReportDataByArchivedBy( + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55799,56 +57359,54 @@ 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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection { + """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge { """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`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationCommunityProgressReportDataByApplicationId( + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55867,34 +57425,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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection { """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: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55904,9 +57460,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreat } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -55914,9 +57470,9 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreat 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 @@ -55935,56 +57491,54 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreat """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge!]! + 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 `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge { +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 `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. """ - applicationCommunityProgressReportDataByUpdatedBy( + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56003,56 +57557,54 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdat """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge { """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( + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56089,14 +57641,14 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplic """ A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56108,7 +57660,7 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy """ A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -56153,38 +57705,36 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `Application` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56203,54 +57753,52 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection { + """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge { """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 `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56269,32 +57817,32 @@ 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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56304,19 +57852,17 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56335,54 +57881,52 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, 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: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `Application` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56401,54 +57945,52 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56467,32 +58009,32 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndAppli """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56502,19 +58044,17 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge { +type 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 `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56533,54 +58073,52 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection { - """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 `ApplicationCommunityReportExcelData`, 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: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + 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 `ApplicationCommunityReportExcelData`. +A `Application` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge { +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 `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56599,52 +58137,52 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection { - """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 `ApplicationClaimsData`, 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: [CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge!]! + 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 `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge { +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 `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56681,14 +58219,14 @@ type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToM """ A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56700,7 +58238,7 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConn """ A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -56743,80 +58281,16 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge } """ -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 `ApplicationClaimsData`, and the cursor to aid in pagination. - """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge!]! - - """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 `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 `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationClaimsDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! -} - -""" -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56826,17 +58300,19 @@ type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToM } """ -A `Application` edge in the connection, with data from `ApplicationClaimsData`. +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56855,32 +58331,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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56890,17 +58366,19 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56919,32 +58397,32 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56954,17 +58432,19 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56983,32 +58463,32 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57018,17 +58498,19 @@ type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyTo } """ -A `Application` edge in the connection, with data from `ApplicationClaimsData`. +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -57047,32 +58529,32 @@ type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57082,17 +58564,19 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge { +type 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 `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57111,32 +58595,32 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57146,17 +58630,19 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge { +type 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 `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57175,32 +58661,32 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57212,7 +58698,7 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdMa """ A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57259,14 +58745,14 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdMa """ A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57278,7 +58764,7 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToMan """ A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57288,7 +58774,7 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToMan """ Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationClaimsExcelDataByUpdatedBy( + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57325,14 +58811,14 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToMan """ A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57344,7 +58830,7 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToMa """ A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57354,7 +58840,7 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToMa """ Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationClaimsExcelDataByArchivedBy( + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57389,16 +58875,16 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToMa } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57408,9 +58894,9 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdMa } """ -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57418,9 +58904,9 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdMa node: Application """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationClaimsExcelDataByApplicationId( + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -57439,32 +58925,32 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57474,9 +58960,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57484,9 +58970,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToMan node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationClaimsExcelDataByCreatedBy( + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57505,32 +58991,32 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57540,9 +59026,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57550,9 +59036,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationClaimsExcelDataByArchivedBy( + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57571,32 +59057,32 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57606,9 +59092,9 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdM } """ -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57616,9 +59102,9 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdM node: Application """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationClaimsExcelDataByApplicationId( + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -57637,32 +59123,32 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57672,9 +59158,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57682,9 +59168,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationClaimsExcelDataByCreatedBy( + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57703,32 +59189,32 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57738,9 +59224,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57748,9 +59234,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationClaimsExcelDataByUpdatedBy( + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57769,32 +59255,32 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57806,7 +59292,7 @@ type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdMany """ A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57853,14 +59339,14 @@ type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdMany """ A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57872,7 +59358,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyC """ A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57882,7 +59368,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyE """ Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationMilestoneDataByUpdatedBy( + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57919,14 +59405,14 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyE """ A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57938,7 +59424,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany """ A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57948,7 +59434,7 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany """ Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationMilestoneDataByArchivedBy( + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57983,16 +59469,16 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58002,9 +59488,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58012,9 +59498,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdMany node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationMilestoneDataByApplicationId( + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58033,32 +59519,32 @@ type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58068,9 +59554,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58078,9 +59564,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyE node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationMilestoneDataByCreatedBy( + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58099,32 +59585,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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58134,9 +59620,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58144,9 +59630,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationMilestoneDataByArchivedBy( + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58165,32 +59651,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58200,9 +59686,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdMan } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58210,9 +59696,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdMan node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationMilestoneDataByApplicationId( + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58231,32 +59717,32 @@ type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58266,9 +59752,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58276,9 +59762,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationMilestoneDataByCreatedBy( + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58297,32 +59783,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58332,9 +59818,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58342,9 +59828,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationMilestoneDataByUpdatedBy( + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58363,54 +59849,186 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! +} + +""" +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +""" +type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + """ + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +""" +type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationMilestoneExcelDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +""" +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + """ + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge!]! + + """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 `ApplicationMilestoneExcelData`. +""" +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationMilestoneExcelDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection { - """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 `ApplicationMilestoneExcelData`, 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: [CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + 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 `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge { +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 `ApplicationMilestoneExcelData`. """ - applicationMilestoneExcelDataByApplicationId( + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58445,16 +60063,16 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationI } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58463,20 +60081,16 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58495,32 +60109,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58529,20 +60143,16 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyT totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByArchivedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58561,54 +60171,50 @@ 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 `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge!]! """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 CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByApplicationId( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58627,32 +60233,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 `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58661,20 +60267,16 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyTo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByCreatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58693,32 +60295,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 `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58727,20 +60329,16 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyT totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge { +"""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 `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByArchivedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58759,54 +60357,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 `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. -""" -type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByApplicationId( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58825,54 +60419,54 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplication """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, 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: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge!]! + 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 `ApplicationMilestoneExcelData`. +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge { +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 `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationMilestoneExcelDataByCreatedBy( + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58891,32 +60485,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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58926,9 +60520,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58936,9 +60530,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationMilestoneExcelDataByUpdatedBy( + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58957,32 +60551,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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58991,16 +60585,20 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59019,50 +60617,54 @@ 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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59081,32 +60683,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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59115,16 +60717,20 @@ 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 `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59143,32 +60749,32 @@ 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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59177,16 +60783,20 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59205,50 +60815,54 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { - """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 `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge!]! + 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 `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59267,32 +60881,32 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CbcProject`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59301,16 +60915,20 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +""" +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59329,54 +60947,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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection { - """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 `ApplicationInternalDescription`, 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: [CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge!]! + 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 `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge { +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 `ApplicationInternalDescription`. """ - applicationInternalDescriptionsByApplicationId( + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59411,38 +61029,38 @@ type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplication } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationInternalDescriptionsByUpdatedBy( + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59461,32 +61079,32 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59496,9 +61114,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59506,9 +61124,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationInternalDescriptionsByArchivedBy( + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59527,54 +61145,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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationInternalDescriptionsByApplicationId( + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59593,54 +61211,54 @@ 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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationInternalDescriptionsByCreatedBy( + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59659,32 +61277,32 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59694,9 +61312,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59704,9 +61322,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationInternalDescriptionsByArchivedBy( + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59725,54 +61343,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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationInternalDescriptionsByApplicationId( + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59791,54 +61409,54 @@ type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicatio """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationInternalDescriptionsByCreatedBy( + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59857,32 +61475,32 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59892,9 +61510,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59902,9 +61520,9 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationInternalDescriptionsByUpdatedBy( + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59923,54 +61541,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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationProjectType`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationProjectTypesByApplicationId( + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60005,16 +61623,16 @@ type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyTo } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60023,20 +61641,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 `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60055,32 +61669,32 @@ type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60089,20 +61703,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 `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60121,54 +61731,50 @@ 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 `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60187,32 +61793,32 @@ type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60221,20 +61827,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 `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 `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60253,32 +61855,32 @@ type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60287,20 +61889,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 `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 `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60319,54 +61917,50 @@ 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 `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60385,54 +61979,50 @@ type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `Application` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, 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: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60451,54 +62041,50 @@ 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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, 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: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge!]! + 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 `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge { +"""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 `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -60517,32 +62103,32 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60551,16 +62137,16 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60579,32 +62165,32 @@ type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60613,16 +62199,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 `Notification`.""" +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60641,50 +62227,50 @@ 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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `Application` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge!]! + edges: [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 `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { +"""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 `EmailRecord`.""" - emailRecordsByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60703,50 +62289,50 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge!]! + edges: [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 `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { +"""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 `EmailRecord`.""" - emailRecordsByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -60765,32 +62351,32 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60799,16 +62385,16 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60827,32 +62413,32 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60861,16 +62447,16 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type 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 `EmailRecord`.""" - emailRecordsByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60889,32 +62475,32 @@ type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ A connection to a list of `Application` values, with data from `Notification`. """ -type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60924,7 +62510,7 @@ type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnec } """A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60969,14 +62555,14 @@ type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { """ A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection { +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection { """A list of `EmailRecord` objects.""" nodes: [EmailRecord]! """ A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60986,7 +62572,7 @@ type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnec } """A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61031,14 +62617,14 @@ type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61048,7 +62634,7 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61056,7 +62642,7 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61093,14 +62679,14 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61110,7 +62696,7 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -61118,7 +62704,7 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { node: CcbcUser """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61153,16 +62739,16 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { } """ -A connection to a list of `Application` values, with data from `Notification`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61171,16 +62757,20 @@ type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnec totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61199,50 +62789,54 @@ type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `EmailRecord` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61261,32 +62855,32 @@ type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61295,16 +62889,20 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61323,32 +62921,98 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + """ + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61357,16 +63021,20 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61385,50 +63053,54 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `Application` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61447,50 +63119,54 @@ type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `EmailRecord` values, with data from `Notification`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61509,32 +63185,32 @@ type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61543,16 +63219,20 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61571,32 +63251,32 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61605,16 +63285,20 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61633,19 +63317,19 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ @@ -62476,6 +64160,14 @@ type Mutation { input: CreateApplicationPackageInput! ): CreateApplicationPackagePayload + """Creates a single `ApplicationPendingChangeRequest`.""" + createApplicationPendingChangeRequest( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: CreateApplicationPendingChangeRequestInput! + ): CreateApplicationPendingChangeRequestPayload + """Creates a single `ApplicationProjectType`.""" createApplicationProjectType( """ @@ -62980,6 +64672,26 @@ type Mutation { input: UpdateApplicationPackageByRowIdInput! ): UpdateApplicationPackagePayload + """ + Updates a single `ApplicationPendingChangeRequest` using its globally unique id and a patch. + """ + updateApplicationPendingChangeRequest( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: UpdateApplicationPendingChangeRequestInput! + ): UpdateApplicationPendingChangeRequestPayload + + """ + Updates a single `ApplicationPendingChangeRequest` using a unique key and a patch. + """ + updateApplicationPendingChangeRequestByRowId( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: UpdateApplicationPendingChangeRequestByRowIdInput! + ): UpdateApplicationPendingChangeRequestPayload + """ Updates a single `ApplicationProjectType` using its globally unique id and a patch. """ @@ -63608,6 +65320,24 @@ type Mutation { input: DeleteApplicationPackageByRowIdInput! ): DeleteApplicationPackagePayload + """ + Deletes a single `ApplicationPendingChangeRequest` using its globally unique id. + """ + deleteApplicationPendingChangeRequest( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: DeleteApplicationPendingChangeRequestInput! + ): DeleteApplicationPendingChangeRequestPayload + + """Deletes a single `ApplicationPendingChangeRequest` using a unique key.""" + deleteApplicationPendingChangeRequestByRowId( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: DeleteApplicationPendingChangeRequestByRowIdInput! + ): DeleteApplicationPendingChangeRequestPayload + """ Deletes a single `ApplicationProjectType` using its globally unique id. """ @@ -64947,6 +66677,99 @@ input ApplicationPackageInput { archivedAt: Datetime } +"""The output of our create `ApplicationPendingChangeRequest` mutation.""" +type CreateApplicationPendingChangeRequestPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """ + The `ApplicationPendingChangeRequest` that was created by this mutation. + """ + applicationPendingChangeRequest: ApplicationPendingChangeRequest + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """ + Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByArchivedBy: CcbcUser + + """ + An edge for our `ApplicationPendingChangeRequest`. May be used by Relay 1. + """ + applicationPendingChangeRequestEdge( + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + ): ApplicationPendingChangeRequestsEdge +} + +"""All input for the create `ApplicationPendingChangeRequest` mutation.""" +input CreateApplicationPendingChangeRequestInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """The `ApplicationPendingChangeRequest` to be created by this mutation.""" + applicationPendingChangeRequest: ApplicationPendingChangeRequestInput! +} + +"""An input for mutations affecting `ApplicationPendingChangeRequest`""" +input ApplicationPendingChangeRequestInput { + """ + ID of the application this application_pending_change_request belongs to + """ + applicationId: Int + + """Column defining if the change request pending or not""" + isPending: Boolean + + """ + Column containing the comment for the change request or completion of the change request + """ + comment: String + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime +} + """The output of our create `ApplicationProjectType` mutation.""" type CreateApplicationProjectTypePayload { """ @@ -68147,9 +69970,235 @@ input ApplicationInternalDescriptionPatch { } """ -All input for the `updateApplicationInternalDescriptionByRowId` mutation. +All input for the `updateApplicationInternalDescriptionByRowId` mutation. +""" +input UpdateApplicationInternalDescriptionByRowIdInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + An object where the defined keys will be set on the `ApplicationInternalDescription` being updated. + """ + applicationInternalDescriptionPatch: ApplicationInternalDescriptionPatch! + + """Unique id for the row""" + rowId: Int! +} + +"""The output of our update `ApplicationMilestoneData` mutation.""" +type UpdateApplicationMilestoneDataPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """The `ApplicationMilestoneData` that was updated by this mutation.""" + applicationMilestoneData: ApplicationMilestoneData + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """ + Reads a single `Application` that is related to this `ApplicationMilestoneData`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + """ + ccbcUserByArchivedBy: CcbcUser + + """An edge for our `ApplicationMilestoneData`. May be used by Relay 1.""" + applicationMilestoneDataEdge( + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + ): ApplicationMilestoneDataEdge +} + +"""All input for the `updateApplicationMilestoneData` mutation.""" +input UpdateApplicationMilestoneDataInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + The globally unique `ID` which will identify a single `ApplicationMilestoneData` to be updated. + """ + id: ID! + + """ + An object where the defined keys will be set on the `ApplicationMilestoneData` being updated. + """ + applicationMilestoneDataPatch: ApplicationMilestoneDataPatch! +} + +""" +Represents an update to a `ApplicationMilestoneData`. Fields that are set will be updated. +""" +input ApplicationMilestoneDataPatch { + """Id of the application the milestone belongs to""" + applicationId: Int + + """The milestone form json data""" + jsonData: JSON + + """The id of the excel data that this record is associated with""" + excelDataId: Int + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """History operation""" + historyOperation: String +} + +"""All input for the `updateApplicationMilestoneDataByRowId` mutation.""" +input UpdateApplicationMilestoneDataByRowIdInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + An object where the defined keys will be set on the `ApplicationMilestoneData` being updated. + """ + applicationMilestoneDataPatch: ApplicationMilestoneDataPatch! + + """Unique id for the milestone""" + rowId: Int! +} + +"""The output of our update `ApplicationMilestoneExcelData` mutation.""" +type UpdateApplicationMilestoneExcelDataPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """The `ApplicationMilestoneExcelData` that was updated by this mutation.""" + applicationMilestoneExcelData: ApplicationMilestoneExcelData + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """ + Reads a single `Application` that is related to this `ApplicationMilestoneExcelData`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + """ + ccbcUserByArchivedBy: CcbcUser + + """ + An edge for our `ApplicationMilestoneExcelData`. May be used by Relay 1. + """ + applicationMilestoneExcelDataEdge( + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + ): ApplicationMilestoneExcelDataEdge +} + +"""All input for the `updateApplicationMilestoneExcelData` mutation.""" +input UpdateApplicationMilestoneExcelDataInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + The globally unique `ID` which will identify a single `ApplicationMilestoneExcelData` to be updated. + """ + id: ID! + + """ + An object where the defined keys will be set on the `ApplicationMilestoneExcelData` being updated. + """ + applicationMilestoneExcelDataPatch: ApplicationMilestoneExcelDataPatch! +} + +""" +Represents an update to a `ApplicationMilestoneExcelData`. Fields that are set will be updated. +""" +input ApplicationMilestoneExcelDataPatch { + """ID of the application this data belongs to""" + applicationId: Int + + """The data imported from the excel filled by the respondent""" + jsonData: JSON + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime +} + +""" +All input for the `updateApplicationMilestoneExcelDataByRowId` mutation. """ -input UpdateApplicationInternalDescriptionByRowIdInput { +input UpdateApplicationMilestoneExcelDataByRowIdInput { """ An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client. @@ -68157,24 +70206,24 @@ input UpdateApplicationInternalDescriptionByRowIdInput { clientMutationId: String """ - An object where the defined keys will be set on the `ApplicationInternalDescription` being updated. + An object where the defined keys will be set on the `ApplicationMilestoneExcelData` being updated. """ - applicationInternalDescriptionPatch: ApplicationInternalDescriptionPatch! + applicationMilestoneExcelDataPatch: ApplicationMilestoneExcelDataPatch! - """Unique id for the row""" + """Unique ID for the milestone excel data""" rowId: Int! } -"""The output of our update `ApplicationMilestoneData` mutation.""" -type UpdateApplicationMilestoneDataPayload { +"""The output of our update `ApplicationPackage` mutation.""" +type UpdateApplicationPackagePayload { """ The exact same `clientMutationId` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations. """ clientMutationId: String - """The `ApplicationMilestoneData` that was updated by this mutation.""" - applicationMilestoneData: ApplicationMilestoneData + """The `ApplicationPackage` that was updated by this mutation.""" + applicationPackage: ApplicationPackage """ Our root query field type. Allows us to run any query from our mutation payload. @@ -68182,34 +70231,34 @@ type UpdateApplicationMilestoneDataPayload { query: Query """ - Reads a single `Application` that is related to this `ApplicationMilestoneData`. + Reads a single `Application` that is related to this `ApplicationPackage`. """ applicationByApplicationId: Application """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + Reads a single `CcbcUser` that is related to this `ApplicationPackage`. """ ccbcUserByCreatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + Reads a single `CcbcUser` that is related to this `ApplicationPackage`. """ ccbcUserByUpdatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + Reads a single `CcbcUser` that is related to this `ApplicationPackage`. """ ccbcUserByArchivedBy: CcbcUser - """An edge for our `ApplicationMilestoneData`. May be used by Relay 1.""" - applicationMilestoneDataEdge( - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] - ): ApplicationMilestoneDataEdge + """An edge for our `ApplicationPackage`. May be used by Relay 1.""" + applicationPackageEdge( + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + ): ApplicationPackagesEdge } -"""All input for the `updateApplicationMilestoneData` mutation.""" -input UpdateApplicationMilestoneDataInput { +"""All input for the `updateApplicationPackage` mutation.""" +input UpdateApplicationPackageInput { """ An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client. @@ -68217,28 +70266,25 @@ input UpdateApplicationMilestoneDataInput { clientMutationId: String """ - The globally unique `ID` which will identify a single `ApplicationMilestoneData` to be updated. + The globally unique `ID` which will identify a single `ApplicationPackage` to be updated. """ id: ID! """ - An object where the defined keys will be set on the `ApplicationMilestoneData` being updated. + An object where the defined keys will be set on the `ApplicationPackage` being updated. """ - applicationMilestoneDataPatch: ApplicationMilestoneDataPatch! + applicationPackagePatch: ApplicationPackagePatch! } """ -Represents an update to a `ApplicationMilestoneData`. Fields that are set will be updated. +Represents an update to a `ApplicationPackage`. Fields that are set will be updated. """ -input ApplicationMilestoneDataPatch { - """Id of the application the milestone belongs to""" +input ApplicationPackagePatch { + """The application_id of the application this record is associated with""" applicationId: Int - """The milestone form json data""" - jsonData: JSON - - """The id of the excel data that this record is associated with""" - excelDataId: Int + """The package number the application is assigned to""" + package: Int """created by user id""" createdBy: Int @@ -68257,13 +70303,10 @@ input ApplicationMilestoneDataPatch { """archived at timestamp""" archivedAt: Datetime - - """History operation""" - historyOperation: String } -"""All input for the `updateApplicationMilestoneDataByRowId` mutation.""" -input UpdateApplicationMilestoneDataByRowIdInput { +"""All input for the `updateApplicationPackageByRowId` mutation.""" +input UpdateApplicationPackageByRowIdInput { """ An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client. @@ -68271,24 +70314,26 @@ input UpdateApplicationMilestoneDataByRowIdInput { clientMutationId: String """ - An object where the defined keys will be set on the `ApplicationMilestoneData` being updated. + An object where the defined keys will be set on the `ApplicationPackage` being updated. """ - applicationMilestoneDataPatch: ApplicationMilestoneDataPatch! + applicationPackagePatch: ApplicationPackagePatch! - """Unique id for the milestone""" + """Unique ID for the application_package""" rowId: Int! } -"""The output of our update `ApplicationMilestoneExcelData` mutation.""" -type UpdateApplicationMilestoneExcelDataPayload { +"""The output of our update `ApplicationPendingChangeRequest` mutation.""" +type UpdateApplicationPendingChangeRequestPayload { """ The exact same `clientMutationId` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations. """ clientMutationId: String - """The `ApplicationMilestoneExcelData` that was updated by this mutation.""" - applicationMilestoneExcelData: ApplicationMilestoneExcelData + """ + The `ApplicationPendingChangeRequest` that was updated by this mutation. + """ + applicationPendingChangeRequest: ApplicationPendingChangeRequest """ Our root query field type. Allows us to run any query from our mutation payload. @@ -68296,36 +70341,36 @@ type UpdateApplicationMilestoneExcelDataPayload { query: Query """ - Reads a single `Application` that is related to this `ApplicationMilestoneExcelData`. + Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. """ applicationByApplicationId: Application """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. """ ccbcUserByCreatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. """ ccbcUserByUpdatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. """ ccbcUserByArchivedBy: CcbcUser """ - An edge for our `ApplicationMilestoneExcelData`. May be used by Relay 1. + An edge for our `ApplicationPendingChangeRequest`. May be used by Relay 1. """ - applicationMilestoneExcelDataEdge( - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] - ): ApplicationMilestoneExcelDataEdge + applicationPendingChangeRequestEdge( + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + ): ApplicationPendingChangeRequestsEdge } -"""All input for the `updateApplicationMilestoneExcelData` mutation.""" -input UpdateApplicationMilestoneExcelDataInput { +"""All input for the `updateApplicationPendingChangeRequest` mutation.""" +input UpdateApplicationPendingChangeRequestInput { """ An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client. @@ -68333,135 +70378,32 @@ input UpdateApplicationMilestoneExcelDataInput { clientMutationId: String """ - The globally unique `ID` which will identify a single `ApplicationMilestoneExcelData` to be updated. + The globally unique `ID` which will identify a single `ApplicationPendingChangeRequest` to be updated. """ id: ID! """ - An object where the defined keys will be set on the `ApplicationMilestoneExcelData` being updated. + An object where the defined keys will be set on the `ApplicationPendingChangeRequest` being updated. """ - applicationMilestoneExcelDataPatch: ApplicationMilestoneExcelDataPatch! + applicationPendingChangeRequestPatch: ApplicationPendingChangeRequestPatch! } """ -Represents an update to a `ApplicationMilestoneExcelData`. Fields that are set will be updated. +Represents an update to a `ApplicationPendingChangeRequest`. Fields that are set will be updated. """ -input ApplicationMilestoneExcelDataPatch { - """ID of the application this data belongs to""" - applicationId: Int - - """The data imported from the excel filled by the respondent""" - jsonData: JSON - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime -} - -""" -All input for the `updateApplicationMilestoneExcelDataByRowId` mutation. -""" -input UpdateApplicationMilestoneExcelDataByRowIdInput { - """ - An arbitrary string value with no semantic meaning. Will be included in the - payload verbatim. May be used to track mutations by the client. +input ApplicationPendingChangeRequestPatch { """ - clientMutationId: String - - """ - An object where the defined keys will be set on the `ApplicationMilestoneExcelData` being updated. + ID of the application this application_pending_change_request belongs to """ - applicationMilestoneExcelDataPatch: ApplicationMilestoneExcelDataPatch! - - """Unique ID for the milestone excel data""" - rowId: Int! -} - -"""The output of our update `ApplicationPackage` mutation.""" -type UpdateApplicationPackagePayload { - """ - The exact same `clientMutationId` that was provided in the mutation input, - unchanged and unused. May be used by a client to track mutations. - """ - clientMutationId: String - - """The `ApplicationPackage` that was updated by this mutation.""" - applicationPackage: ApplicationPackage - - """ - Our root query field type. Allows us to run any query from our mutation payload. - """ - query: Query - - """ - Reads a single `Application` that is related to this `ApplicationPackage`. - """ - applicationByApplicationId: Application - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ - ccbcUserByCreatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ - ccbcUserByUpdatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationPackage`. - """ - ccbcUserByArchivedBy: CcbcUser - - """An edge for our `ApplicationPackage`. May be used by Relay 1.""" - applicationPackageEdge( - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] - ): ApplicationPackagesEdge -} - -"""All input for the `updateApplicationPackage` mutation.""" -input UpdateApplicationPackageInput { - """ - An arbitrary string value with no semantic meaning. Will be included in the - payload verbatim. May be used to track mutations by the client. - """ - clientMutationId: String + applicationId: Int - """ - The globally unique `ID` which will identify a single `ApplicationPackage` to be updated. - """ - id: ID! + """Column defining if the change request pending or not""" + isPending: Boolean """ - An object where the defined keys will be set on the `ApplicationPackage` being updated. + Column containing the comment for the change request or completion of the change request """ - applicationPackagePatch: ApplicationPackagePatch! -} - -""" -Represents an update to a `ApplicationPackage`. Fields that are set will be updated. -""" -input ApplicationPackagePatch { - """The application_id of the application this record is associated with""" - applicationId: Int - - """The package number the application is assigned to""" - package: Int + comment: String """created by user id""" createdBy: Int @@ -68482,8 +70424,10 @@ input ApplicationPackagePatch { archivedAt: Datetime } -"""All input for the `updateApplicationPackageByRowId` mutation.""" -input UpdateApplicationPackageByRowIdInput { +""" +All input for the `updateApplicationPendingChangeRequestByRowId` mutation. +""" +input UpdateApplicationPendingChangeRequestByRowIdInput { """ An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client. @@ -68491,11 +70435,11 @@ input UpdateApplicationPackageByRowIdInput { clientMutationId: String """ - An object where the defined keys will be set on the `ApplicationPackage` being updated. + An object where the defined keys will be set on the `ApplicationPendingChangeRequest` being updated. """ - applicationPackagePatch: ApplicationPackagePatch! + applicationPendingChangeRequestPatch: ApplicationPendingChangeRequestPatch! - """Unique ID for the application_package""" + """Unique ID for the application_pending_change_request""" rowId: Int! } @@ -71733,6 +73677,82 @@ input DeleteApplicationPackageByRowIdInput { rowId: Int! } +"""The output of our delete `ApplicationPendingChangeRequest` mutation.""" +type DeleteApplicationPendingChangeRequestPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """ + The `ApplicationPendingChangeRequest` that was deleted by this mutation. + """ + applicationPendingChangeRequest: ApplicationPendingChangeRequest + deletedApplicationPendingChangeRequestId: ID + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """ + Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ + ccbcUserByArchivedBy: CcbcUser + + """ + An edge for our `ApplicationPendingChangeRequest`. May be used by Relay 1. + """ + applicationPendingChangeRequestEdge( + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + ): ApplicationPendingChangeRequestsEdge +} + +"""All input for the `deleteApplicationPendingChangeRequest` mutation.""" +input DeleteApplicationPendingChangeRequestInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + The globally unique `ID` which will identify a single `ApplicationPendingChangeRequest` to be deleted. + """ + id: ID! +} + +""" +All input for the `deleteApplicationPendingChangeRequestByRowId` mutation. +""" +input DeleteApplicationPendingChangeRequestByRowIdInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """Unique ID for the application_pending_change_request""" + rowId: Int! +} + """The output of our delete `ApplicationProjectType` mutation.""" type DeleteApplicationProjectTypePayload { """ diff --git a/app/tests/components/Analyst/ApplicationHeader.test.tsx b/app/tests/components/Analyst/ApplicationHeader.test.tsx index 71a0e8838e..5f2d4b55a2 100644 --- a/app/tests/components/Analyst/ApplicationHeader.test.tsx +++ b/app/tests/components/Analyst/ApplicationHeader.test.tsx @@ -270,6 +270,7 @@ describe('The application header component', () => { expect(screen.getByLabelText('Package')).toBeVisible(); expect(screen.getByLabelText('Project Type')).toBeVisible(); expect(screen.queryByLabelText('Lead')).not.toBeInTheDocument(); + expect(screen.getByLabelText('Pending Change Request')).toBeVisible(); }); it('displays the Lead column when feature enabled', () => { diff --git a/app/tests/components/Analyst/PendingChangeRequest.test.tsx b/app/tests/components/Analyst/PendingChangeRequest.test.tsx new file mode 100644 index 0000000000..9db8b93278 --- /dev/null +++ b/app/tests/components/Analyst/PendingChangeRequest.test.tsx @@ -0,0 +1,369 @@ +import { graphql } from 'react-relay'; +import compiledQuery, { + PendingChangeRequestTestQuery, +} from '__generated__/PendingChangeRequestTestQuery.graphql'; +import { act, screen, fireEvent } from '@testing-library/react'; +import { PendingChangeRequest } from 'components/Analyst'; +import { performQuery } from '../../../backend/lib/graphql'; +import ComponentTestingHelper from '../../utils/componentTestingHelper'; + +jest.mock('../../../backend/lib/graphql', () => ({ + performQuery: jest.fn(), +})); + +const testQuery = graphql` + query PendingChangeRequestTestQuery($rowId: Int!) { + applicationByRowId(rowId: $rowId) { + ...PendingChangeRequest_query + } + } +`; + +const mockQueryPayload = { + Query() { + return { + applicationByRowId: { + id: 'WyJhcHBsaWNhdGlvbnMiLDFd', + rowId: 1, + analystStatus: 'received', + externalStatus: 'on_hold', + applicationPendingChangeRequestsByApplicationId: { + nodes: [ + { + comment: 'test comment', + isPending: true, + }, + ], + }, + }, + }; + }, +}; + +const mockEmptyQueryPayload = { + Query() { + return { + applicationByRowId: { + id: 'WyJhcHBsaWNhdGlvbnMiLDFd', + rowId: 1, + analystStatus: 'received', + externalStatus: 'on_hold', + applicationPendingChangeRequestsByApplicationId: { + nodes: [], + }, + }, + }; + }, +}; + +const componentTestingHelper = + new ComponentTestingHelper({ + component: PendingChangeRequest, + testQuery, + compiledQuery, + defaultQueryResolver: mockQueryPayload, + getPropsFromTestQuery: (data) => ({ + application: data.applicationByRowId, + }), + }); + +describe('The Pending Change Request component', () => { + beforeEach(() => { + componentTestingHelper.reinit(); + }); + + it('render the checkbox and comment icon correctly', () => { + componentTestingHelper.loadQuery(); + componentTestingHelper.renderComponent(); + + expect(screen.getByTestId('pending-change-request-comments')).toBeVisible(); + expect(screen.getByTestId('pending-change-request-checkbox')).toBeVisible(); + }); + + it('load edit comment modal when clicked comment icon', async () => { + componentTestingHelper.loadQuery(); + componentTestingHelper.renderComponent(); + + const commentIcon = screen.getByTestId('pending-change-request-comments'); + + await act(async () => { + fireEvent.click(commentIcon); + }); + + expect( + screen.getByText('Comments on pending changes (optional)') + ).toBeVisible(); + + expect(screen.getByText('test comment')).toBeVisible(); + + const saveButton = screen.getByTestId('pending-request-change-save-btn'); + expect(saveButton).toBeDisabled(); + + const cancelButton = screen.getByTestId( + 'pending-request-change-cancel-btn' + ); + expect(cancelButton).toBeEnabled(); + }); + + it('edit comment modal save button calls correct mutation', async () => { + componentTestingHelper.loadQuery(); + componentTestingHelper.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); + }); + + componentTestingHelper.expectMutationToBeCalled( + 'createPendingChangeRequestMutation', + { + input: { + applicationPendingChangeRequest: { + applicationId: 1, + comment: 'Edited comment.', + isPending: true, + }, + }, + } + ); + }); + + it('unchecking pending change request checkbox opens modal with mandatory options', async () => { + componentTestingHelper.loadQuery(); + componentTestingHelper.renderComponent(); + + const checkbox = screen.getByTestId('pending-change-request-checkbox'); + await act(async () => { + fireEvent.click(checkbox); + }); + + expect(screen.getByText('Done with this change request?')).toBeVisible(); + + expect(screen.getByText('Yes, change request completed')).toBeVisible(); + expect(screen.getByText('Yes, change request cancelled')).toBeVisible(); + + const cancelButton = screen.getByTestId('pending-request-change-save-btn'); + expect(cancelButton).toBeDisabled(); + + const radioInput = screen.getByRole('radio', { + name: 'root_comment-1', + }); + + await act(async () => { + fireEvent.click(radioInput); + }); + + expect(cancelButton).toBeEnabled(); + }); + + it('unchecking pending change request calls correct mutation', async () => { + componentTestingHelper.loadQuery(); + componentTestingHelper.renderComponent(); + + const checkbox = screen.getByTestId('pending-change-request-checkbox'); + await act(async () => { + fireEvent.click(checkbox); + }); + + const saveButton = screen.getByTestId('pending-request-change-save-btn'); + const radioInput = screen.getByRole('radio', { + name: 'root_comment-1', + }); + + await act(async () => { + fireEvent.click(radioInput); + }); + + await act(async () => { + fireEvent.click(saveButton); + }); + + componentTestingHelper.expectMutationToBeCalled( + 'createPendingChangeRequestMutation', + { + input: { + applicationPendingChangeRequest: { + applicationId: 1, + comment: 'Yes, change request cancelled', + isPending: false, + }, + }, + } + ); + }); + + it('checking pending change request checkbox opens modal with optional comments', async () => { + componentTestingHelper.loadQuery(mockEmptyQueryPayload); + componentTestingHelper.renderComponent(); + + expect( + screen.queryByTestId('pending-change-request-comments') + ).not.toBeInTheDocument(); + + const checkbox = screen.getByTestId('pending-change-request-checkbox'); + await act(async () => { + fireEvent.click(checkbox); + }); + + expect( + screen.getByText('Comments on pending changes (optional)') + ).toBeVisible(); + + const saveButton = screen.getByTestId('pending-request-change-save-btn'); + + expect(saveButton).toBeDisabled(); + + const cancelButton = screen.getByTestId( + 'pending-request-change-cancel-btn' + ); + + expect(cancelButton).toBeEnabled(); + }); + + it('save comment button calls correct mutation', async () => { + componentTestingHelper.loadQuery(mockEmptyQueryPayload); + componentTestingHelper.renderComponent(); + + const checkBox = screen.getByTestId('pending-change-request-checkbox'); + + expect(checkBox).toBeVisible(); + + await act(async () => { + fireEvent.click(checkBox); + }); + + expect( + screen.getByText('Comments on pending changes (optional)') + ).toBeVisible(); + + const textArea = screen.getByTestId('root_comment'); + + fireEvent.change(textArea, { + target: { value: 'This is a test comment.' }, + }); + + const saveButton = screen.getByRole('button', { name: 'Save comment' }); + + await act(async () => { + fireEvent.click(saveButton); + }); + + componentTestingHelper.expectMutationToBeCalled( + 'createPendingChangeRequestMutation', + { + input: { + applicationPendingChangeRequest: { + applicationId: 1, + comment: 'This is a test comment.', + isPending: true, + }, + }, + } + ); + }); + + it('create pending change request comments are mandatory', async () => { + componentTestingHelper.loadQuery(mockEmptyQueryPayload); + componentTestingHelper.renderComponent(); + + const checkBox = screen.getByTestId('pending-change-request-checkbox'); + + expect(checkBox).toBeVisible(); + + await act(async () => { + fireEvent.click(checkBox); + }); + + expect( + screen.getByText('Comments on pending changes (optional)') + ).toBeVisible(); + + const cancelButton = screen.getByRole('button', { name: 'Cancel' }); + + await act(async () => { + fireEvent.click(cancelButton); + }); + + componentTestingHelper.expectMutationToBeCalled( + 'createPendingChangeRequestMutation', + { + input: { + applicationPendingChangeRequest: { + applicationId: 1, + comment: null, + isPending: true, + }, + }, + } + ); + }); + + it('pending change request comment edit close button handle modal close only', async () => { + componentTestingHelper.loadQuery(); + componentTestingHelper.renderComponent(); + + const commentIcon = screen.getByTestId('pending-change-request-comments'); + + expect(commentIcon).toBeVisible(); + + await act(async () => { + fireEvent.click(commentIcon); + }); + + expect( + screen.getByText('Comments on pending changes (optional)') + ).toBeVisible(); + + const cancelButton = screen.getByRole('button', { name: 'Cancel' }); + + await act(async () => { + fireEvent.click(cancelButton); + }); + + expect( + screen.getByText('Comments on pending changes (optional)') + ).not.toBeVisible(); + + expect(performQuery).not.toHaveBeenCalled(); + }); + + it('Closing change request modal keep pending button closes modal and keep change request', async () => { + componentTestingHelper.loadQuery(); + componentTestingHelper.renderComponent(); + + const checkbox = screen.getByTestId('pending-change-request-checkbox'); + + expect(checkbox).toBeVisible(); + + await act(async () => { + fireEvent.click(checkbox); + }); + + const cancelButton = screen.getByRole('button', { + name: 'No, Keep Pending', + }); + + await act(async () => { + fireEvent.click(cancelButton); + }); + + expect( + screen.getByText('Done with this change request?') + ).not.toBeVisible(); + + expect(performQuery).not.toHaveBeenCalled(); + }); +}); diff --git a/db/deploy/tables/application_pending_change_request.sql b/db/deploy/tables/application_pending_change_request.sql new file mode 100644 index 0000000000..4c570a057e --- /dev/null +++ b/db/deploy/tables/application_pending_change_request.sql @@ -0,0 +1,40 @@ +-- Deploy ccbc:tables/application_pending_change_request to pg + +BEGIN; + +create table ccbc_public.application_pending_change_request( + id integer primary key generated always as identity, + application_id integer references ccbc_public.application(id), + is_pending boolean default false, + comment varchar(100) +); + +select ccbc_private.upsert_timestamp_columns('ccbc_public', 'application_pending_change_request'); + +-- enable audit/history +select audit.enable_tracking('ccbc_public.application_pending_change_request'::regclass); + +do +$grant$ +begin + +-- Grant ccbc_admin permissions +perform ccbc_private.grant_permissions('select', 'application_pending_change_request', 'ccbc_admin'); +perform ccbc_private.grant_permissions('insert', 'application_pending_change_request', 'ccbc_admin'); +perform ccbc_private.grant_permissions('update', 'application_pending_change_request', 'ccbc_admin'); + +-- Grant ccbc_analyst permissions +perform ccbc_private.grant_permissions('select', 'application_pending_change_request', 'ccbc_analyst'); +perform ccbc_private.grant_permissions('insert', 'application_pending_change_request', 'ccbc_analyst'); +perform ccbc_private.grant_permissions('update', 'application_pending_change_request', 'ccbc_analyst'); + +end +$grant$; + +comment on table ccbc_public.application_pending_change_request is 'Table containing the pending change request details of the application'; +comment on column ccbc_public.application_pending_change_request.id is 'Unique ID for the application_pending_change_request'; +comment on column ccbc_public.application_pending_change_request.application_id is 'ID of the application this application_pending_change_request belongs to'; +comment on column ccbc_public.application_pending_change_request.is_pending is 'Column defining if the change request pending or not'; +comment on column ccbc_public.application_pending_change_request.comment is 'Column containing the comment for the change request or completion of the change request'; + +COMMIT; diff --git a/db/revert/tables/application_pending_change_request.sql b/db/revert/tables/application_pending_change_request.sql new file mode 100644 index 0000000000..bc217a2b83 --- /dev/null +++ b/db/revert/tables/application_pending_change_request.sql @@ -0,0 +1,7 @@ +-- Revert ccbc:tables/application_pending_change_request from pg + +BEGIN; + +drop table if exists ccbc_public.application_pending_change_request; + +COMMIT; diff --git a/db/sqitch.plan b/db/sqitch.plan index 627eef9048..55472bd606 100644 --- a/db/sqitch.plan +++ b/db/sqitch.plan @@ -560,3 +560,4 @@ tables/application_status_type_010_closed_to_not_selected 2024-05-01T15:54:58Z A @1.159.0 2024-05-08T18:59:40Z CCBC Service Account # release v1.159.0 @1.160.0 2024-05-09T19:58:52Z CCBC Service Account # release v1.160.0 @1.160.1 2024-05-15T16:41:31Z CCBC Service Account # release v1.160.1 +tables/application_pending_change_request 2024-05-03T20:55:21Z ,,, # add application pending change request table