diff --git a/app/backend/lib/excel_import/cbc_project.ts b/app/backend/lib/excel_import/cbc_project.ts index 77764510f3..b90de53d04 100644 --- a/app/backend/lib/excel_import/cbc_project.ts +++ b/app/backend/lib/excel_import/cbc_project.ts @@ -19,6 +19,50 @@ const createCbcProjectMutation = ` } `; +const findCbcQuery = ` + query findCbc($projectNumber: Int!) { + cbcByProjectNumber (projectNumber: $projectNumber) { + rowId + cbcDataByProjectNumber { + nodes { + jsonData + id + projectNumber + rowId + sharepointTimestamp + } + } + } + } +`; + +const createCbcMutation = ` + mutation createCbcMutation($input: CreateCbcInput!) { + createCbc(input: $input) { + clientMutationId + cbc { + rowId + } + } + } +`; + +const createCbcDataMutation = ` + mutation createCbcDataMutation($input: CreateCbcDataInput!) { + createCbcData(input: $input) { + clientMutationId + } + } +`; + +const updateCbcDataMutation = ` +mutation updateCbcDataMutation($input: UpdateCbcDataByRowIdInput!) { + updateCbcDataByRowId(input: $input) { + clientMutationId + } +} +`; + const cbcErrorList = []; const readSummary = async (wb, sheet) => { @@ -55,7 +99,7 @@ const readSummary = async (wb, sheet) => { const cbcProject = { projectNumber: project['A'], - orignalProjectNumber: project['B'], + originalProjectNumber: project['B'], phase: project['C'], intake: project['D'], projectStatus: project['E'], @@ -254,6 +298,67 @@ const LoadCbcProjectData = async (wb, sheet, sharepointTimestamp, req) => { return { error: [e] }; }); + // persist into DB individually + data._jsonData.forEach(async (project) => { + // console.log(project); + const findCbcProject = await performQuery( + findCbcQuery, + { + projectNumber: project.projectNumber, + }, + req + ); + if ( + findCbcProject.data?.cbcByProjectNumber?.cbcDataByProjectNumber?.nodes + .length > 0 + ) { + // update cbc data + await performQuery( + updateCbcDataMutation, + { + input: { + cbcDataPatch: { + jsonData: project, + }, + rowId: + findCbcProject.data.cbcByProjectNumber.cbcDataByProjectNumber + .nodes[0].rowId, + }, + }, + req + ); + } else { + // create cbc + const createCbcResult = await performQuery( + createCbcMutation, + { + input: { + cbc: { + projectNumber: project.projectNumber, + sharepointTimestamp, + }, + }, + }, + req + ); + // create cbc data + await performQuery( + createCbcDataMutation, + { + input: { + cbcData: { + jsonData: project, + projectNumber: project.projectNumber, + cbcId: createCbcResult.data.createCbc.cbc.rowId, + sharepointTimestamp, + }, + }, + }, + req + ); + } + }); + return { ...result, errorLog: cbcErrorList, diff --git a/app/components/Analyst/CBC/AssignField.tsx b/app/components/Analyst/CBC/AssignField.tsx new file mode 100644 index 0000000000..bba99c9e32 --- /dev/null +++ b/app/components/Analyst/CBC/AssignField.tsx @@ -0,0 +1,94 @@ +import { useFeature } from '@growthbook/growthbook-react'; +import { useState } from 'react'; +import { graphql, useFragment } from 'react-relay'; +import { useUpdateCbcDataByRowIdMutation } from 'schema/mutations/cbc/updateCbcData'; +import styled from 'styled-components'; + +const StyledDropdown = styled.select` + text-overflow: ellipsis; + color: ${(props) => props.theme.color.links}; + background-color: ${(props) => props.theme.color.white}; + border: 1px solid ${(props) => props.theme.color.borderGrey}; + padding: 0 8px; + max-width: 100%; + border-radius: 4px; +`; + +const AssignField = ({ fieldName, fieldOptions, fieldType, cbc }) => { + const queryFragment = useFragment( + graphql` + fragment AssignField_query on Cbc { + cbcDataByCbcId { + edges { + node { + jsonData + sharepointTimestamp + rowId + projectNumber + updatedAt + updatedBy + } + } + } + } + `, + cbc + ); + const { jsonData } = queryFragment.cbcDataByCbcId.edges[0].node; + + const [updateField] = useUpdateCbcDataByRowIdMutation(); + const [fieldValue, setFieldValue] = useState( + fieldType === 'string' + ? jsonData[fieldName].toString() || null + : jsonData[fieldName] || null + ); + + const allowEdit = useFeature('show_cbc_edit').value ?? false; + + const handleChange = (e) => { + const { rowId } = queryFragment.cbcDataByCbcId.edges[0].node; + updateField({ + variables: { + input: { + rowId, + cbcDataPatch: { + jsonData: { + ...jsonData, + [fieldName]: + fieldType === 'number' + ? parseInt(e.target.value, 10) + : e.target.value, + }, + }, + }, + }, + onCompleted: () => { + setFieldValue(e.target.value); + }, + debounceKey: 'cbc_assign_field', + }); + }; + + return ( + handleChange(e)} + data-testid={`assign-${fieldName}`} + > + {fieldOptions.map((option) => { + return ( + + ); + })} + + ); +}; + +export default AssignField; diff --git a/app/components/Analyst/CBC/CbcAnalystLayout.tsx b/app/components/Analyst/CBC/CbcAnalystLayout.tsx new file mode 100644 index 0000000000..9737b9e8ee --- /dev/null +++ b/app/components/Analyst/CBC/CbcAnalystLayout.tsx @@ -0,0 +1,47 @@ +import styled from 'styled-components'; +import { graphql, useFragment } from 'react-relay'; +import FormDiv from 'components/FormDiv'; +import NavigationSidebar from './NavigationSidebar'; +import CbcHeader from './CbcHeader'; + +const StyledContainer = styled.div` + display: flex; + flex-direction: column; + margin: 0 auto; + width: 100%; +`; + +const StyledFlex = styled.div` + display: flex; +`; + +const StyledFormDiv = styled(FormDiv)` + max-width: 100%; +`; + +interface Props { + children: JSX.Element[] | JSX.Element; + query: any; +} + +const CbcAnalystLayout: React.FC = ({ children, query }) => { + const queryFragment = useFragment( + graphql` + fragment CbcAnalystLayout_query on Query { + ...CbcHeader_query + } + `, + query + ); + return ( + + + + + {children} + + + ); +}; + +export default CbcAnalystLayout; diff --git a/app/components/Analyst/CBC/CbcChangeStatus.tsx b/app/components/Analyst/CBC/CbcChangeStatus.tsx new file mode 100644 index 0000000000..df9eac9259 --- /dev/null +++ b/app/components/Analyst/CBC/CbcChangeStatus.tsx @@ -0,0 +1,145 @@ +import { graphql, useFragment } from 'react-relay'; +import styled from 'styled-components'; +import statusStyles from 'data/statusStyles'; +import { useUpdateCbcDataByRowIdMutation } from 'schema/mutations/cbc/updateCbcData'; +import { useState } from 'react'; +import { useFeature } from '@growthbook/growthbook-react'; + +interface DropdownProps { + statusStyles: { + primary: string; + backgroundColor: string; + pillWidth: string; + }; +} + +const StyledDropdown = styled.select` + color: ${(props) => props.statusStyles?.primary}; + border: none; + border-radius: 16px; + appearance: none; + padding: 6px 12px; + height: 32px; + width: ${(props) => props.statusStyles?.pillWidth}; + background: ${(props) => ` + ${props.statusStyles?.backgroundColor} url("data:image/svg+xml;utf8, + + + ") + no-repeat; +`}; + background-position: right 5px top 5px; + + :focus { + outline: none; + } +`; + +const StyledOption = styled.option` + color: ${(props) => props.theme.color.text}; + background-color: ${(props) => props.theme.color.white}; +`; + +const getStatus = (status) => { + if (status === 'Conditionally Approved') { + return 'conditionally_approved'; + } + if (status === 'Reporting Complete') { + return 'complete'; + } + if (status === 'Agreement Signed') { + return 'approved'; + } + return status; +}; + +const convertToCbcStatus = (status) => { + if (status === 'conditionally_approved') { + return 'Conditionally Approved'; + } + if (status === 'complete') { + return 'Reporting Complete'; + } + if (status === 'approved') { + return 'Agreement Signed'; + } + return status; +}; + +interface Props { + cbc: any; + status: string; + statusList: any; +} + +const CbcChangeStatus: React.FC = ({ cbc, status, statusList }) => { + const queryFragment = useFragment( + graphql` + fragment CbcChangeStatus_query on Cbc { + cbcDataByCbcId { + edges { + node { + jsonData + sharepointTimestamp + rowId + projectNumber + updatedAt + updatedBy + } + } + } + } + `, + cbc + ); + const [updateStatus] = useUpdateCbcDataByRowIdMutation(); + const [currentStatus, setCurrentStatus] = useState(getStatus(status)); + const allowEdit = useFeature('show_cbc_edit').value ?? false; + + const handleChange = (e) => { + const newStatus = e.target.value; + const cbcDataId = queryFragment?.cbcDataByCbcId?.edges[0].node.rowId; + updateStatus({ + variables: { + input: { + rowId: cbcDataId, + cbcDataPatch: { + jsonData: { + ...queryFragment?.cbcDataByCbcId?.edges[0].node.jsonData, + projectStatus: convertToCbcStatus(newStatus), + }, + }, + }, + }, + onCompleted: () => { + setCurrentStatus(newStatus); + }, + debounceKey: 'cbc_change_status', + }); + }; + + return ( + { + // eslint-disable-next-line no-void + void (() => handleChange(e))(); + }} // Use draft status for colour so it changes as user selects it + statusStyles={statusStyles[getStatus(status)]} + value={currentStatus} + id="change-status" + > + {statusList?.map((statusType) => { + const { description, name, id } = statusType; + + return ( + + {description} + + ); + })} + + ); +}; + +export default CbcChangeStatus; diff --git a/app/components/Analyst/CBC/CbcForm.tsx b/app/components/Analyst/CBC/CbcForm.tsx new file mode 100644 index 0000000000..d26a9b4524 --- /dev/null +++ b/app/components/Analyst/CBC/CbcForm.tsx @@ -0,0 +1,168 @@ +/* eslint-disable @typescript-eslint/no-unused-vars */ +import styled from 'styled-components'; +import { FormBase } from 'components/Form'; +import CircularProgress from '@mui/material/CircularProgress'; +import { RJSFSchema } from '@rjsf/utils'; +import Button from '@button-inc/bcgov-theme/Button'; +import ProjectTheme from '../Project/ProjectTheme'; + +const LoadingContainer = styled.div` + display: block; + margin-right: 200px; + margin-left: 200px; + & > * { + margin-bottom: 16px; + } +`; + +const LoadingItem = styled.div` + display: flex; + align-items: center; + justify-content: center; +`; + +const StyledBtn = styled(Button)` + margin: 0 8px; + padding: 8px 16px; +`; + +interface Props { + additionalContext?: any; + before?: React.ReactNode; + children?: React.ReactNode; + formAnimationHeight?: number; + formAnimationHeightOffset?: number; + formData: any; + formHeader?: string | React.ReactNode | JSX.Element; + handleChange: any; + showEditBtn?: boolean; + /** The hidden submit button's ref, used to enforce validation on the form + * (the red-outline we see on widgets) */ + hiddenSubmitRef?: any; + isExpanded?: boolean; + isFormEditMode: boolean; + isFormAnimated?: boolean; + liveValidate?: boolean; + onSubmit: any; + resetFormData: any; + saveBtnText?: string; + saveBtnDisabled?: boolean; + cancelBtnDisabled?: boolean; + schema: RJSFSchema; + setFormData?: any; + setIsFormEditMode: any; + submitting?: boolean; + submittingText?: string; + theme?: any; + title: string; + uiSchema?: any; + saveDataTestId?: string; + validate?: any; +} + +const CbcForm: React.FC = ({ + additionalContext, + before, + children, + formData, + formHeader, + handleChange, + hiddenSubmitRef, + showEditBtn = true, + isExpanded = false, + isFormAnimated, + isFormEditMode, + liveValidate, + onSubmit, + resetFormData, + saveBtnDisabled, + cancelBtnDisabled, + saveBtnText, + schema, + setFormData = () => {}, + setIsFormEditMode, + submitting = false, + submittingText, + theme, + title, + uiSchema, + validate, + saveDataTestId = 'save', + ...rest +}) => { + return ( + <> + {before} + {submitting && ( + + + + + +

{`${submittingText}`}

+
+
+ )} + {/* We only show the readonly form if there are no children */} + {!children && ( +
+ + {hiddenSubmitRef ? ( + + ) : ( + true + )} + + {isFormEditMode && ( + <> + + {saveBtnText || 'Save'} + + { + setFormData(); + setIsFormEditMode(false); + }} + > + Cancel + + + )} +
+ )} + {children} + + ); +}; +export default CbcForm; diff --git a/app/components/Analyst/CBC/CbcHeader.tsx b/app/components/Analyst/CBC/CbcHeader.tsx new file mode 100644 index 0000000000..73fa5f9a60 --- /dev/null +++ b/app/components/Analyst/CBC/CbcHeader.tsx @@ -0,0 +1,141 @@ +import styled from 'styled-components'; +import { graphql, useFragment } from 'react-relay'; +import CbcChangeStatus from './CbcChangeStatus'; +import AssignField from './AssignField'; + +const StyledCallout = styled.div` + margin-bottom: 0.5em; + display: flex; + justify-content: space-between; + padding: 8px 12px; + padding-bottom: 0; + border-left: 4px solid ${(props) => props.theme.color.links}; + width: 100%; +`; + +const StyledH1 = styled.h1` + font-size: 24px; + margin: 8px 0; +`; + +const StyledH2 = styled.h2` + margin: 0; + font-size: 16px; +`; + +const StyledProjectInfo = styled.div` + width: 100%; +`; + +const StyledDiv = styled.div` + display: grid; + height: fit-content; +`; + +const StyledLabel = styled.label` + min-width: 130px; + color: ${(props) => props.theme.color.components}; + padding-right: 1rem; + direction: rtl; +`; + +const StyledItem = styled.div` + display: flex; + align-items: center; + margin: 8px 0 0 0; +`; + +const StyledAssign = styled(StyledItem)` + margin: 8px 0 0 0; +`; + +interface Props { + query: any; +} + +const CbcHeader: React.FC = ({ query }) => { + const queryFragment = useFragment( + graphql` + fragment CbcHeader_query on Query { + cbcByRowId(rowId: $rowId) { + projectNumber + rowId + sharepointTimestamp + cbcDataByCbcId { + edges { + node { + jsonData + sharepointTimestamp + rowId + projectNumber + updatedAt + updatedBy + } + } + } + ...CbcChangeStatus_query + ...AssignField_query + } + } + `, + query + ); + + const { cbcByRowId } = queryFragment; + const { projectNumber, cbcDataByCbcId } = cbcByRowId; + + const { edges } = cbcDataByCbcId; + const cbcData = edges[0].node; + const { jsonData } = cbcData; + const status = jsonData.projectStatus; + + return ( + + + {projectNumber} + {jsonData.projectTitle} + {jsonData.applicantContractualName} + + + + Status + + + + Phase + + + + Intake + + + + + ); +}; + +export default CbcHeader; diff --git a/app/components/Analyst/CBC/NavigationSidebar.tsx b/app/components/Analyst/CBC/NavigationSidebar.tsx new file mode 100644 index 0000000000..a744259d86 --- /dev/null +++ b/app/components/Analyst/CBC/NavigationSidebar.tsx @@ -0,0 +1,59 @@ +import styled from 'styled-components'; +import { useRouter } from 'next/router'; +import { + faChevronLeft, + faClipboardList, + faClockRotateLeft, +} from '@fortawesome/free-solid-svg-icons'; +import NavItem from '../NavItem'; + +const StyledAside = styled.aside` + min-height: 100%; +`; + +const StyledNav = styled.nav` + position: sticky; + top: 40px; +`; + +const StyledUpperSection = styled.section` + border-bottom: 1px solid #d6d6d6; + color: ${(props) => props.theme.color.navigationBlue}; +`; + +const NavigationSidebar = () => { + const router = useRouter(); + const { asPath } = router; + const { cbcId } = router.query; + + return ( + + + + + +
+ + +
+
+
+ ); +}; + +export default NavigationSidebar; diff --git a/app/components/Analyst/Project/fields/ProjectFieldTemplate.tsx b/app/components/Analyst/Project/fields/ProjectFieldTemplate.tsx index c0ddbaeec9..daf3dc10e1 100644 --- a/app/components/Analyst/Project/fields/ProjectFieldTemplate.tsx +++ b/app/components/Analyst/Project/fields/ProjectFieldTemplate.tsx @@ -35,13 +35,17 @@ const ProjectFieldTemplate: React.FC = ({ children, uiSchema, }) => { - const uiTitle = uiSchema['ui:label'] || uiSchema['ui:title']; - + const uiTitle = `${uiSchema?.['ui:label'] ?? uiSchema?.['ui:title']}`; + const hidden = uiSchema?.['ui:widget'] === 'HiddenWidget' || false; return ( - - {uiTitle && {uiTitle}} - {children} - + <> + {!hidden && ( + + {uiTitle && {uiTitle}} + {children} + + )} + ); }; diff --git a/app/components/AnalystDashboard/AllDashboard.tsx b/app/components/AnalystDashboard/AllDashboard.tsx index 5c4702be5f..b73a88775a 100644 --- a/app/components/AnalystDashboard/AllDashboard.tsx +++ b/app/components/AnalystDashboard/AllDashboard.tsx @@ -98,10 +98,14 @@ const muiTableHeadCellProps = { const CcbcIdCell = ({ cell }) => { const applicationId = cell.row.original?.rowId; + const isCbcProject = cell.row.original?.isCbcProject; + const linkCbc = cell.row.original?.showLink; return ( <> - {applicationId ? ( - + {linkCbc ? ( + {cell.getValue()} ) : ( @@ -178,9 +182,13 @@ const AllDashboardTable: React.FC = ({ query }) => { } } } - allCbcProjects(filter: { archivedAt: { isNull: true } }) { - nodes { - jsonData + allCbcData(filter: { archivedAt: { isNull: true } }) { + edges { + node { + jsonData + projectNumber + cbcId + } } } } @@ -207,7 +215,7 @@ const AllDashboardTable: React.FC = ({ query }) => { }, [queryFragment] ); - const { allApplications, allCbcProjects } = queryFragment; + const { allApplications, allCbcData } = queryFragment; const isLargeUp = useMediaQuery('(min-width:1007px)'); const [isFirstRender, setIsFirstRender] = useState(true); @@ -217,6 +225,7 @@ const AllDashboardTable: React.FC = ({ query }) => { ); const showLeadFeatureFlag = useFeature('show_lead').value ?? false; const showCbcProjects = useFeature('show_cbc_projects').value ?? false; + const showCbcProjectsLink = useFeature('show_cbc_view_link').value ?? false; const [columnVisibility, setColumnVisibility] = useState( { Lead: false } ); @@ -377,25 +386,30 @@ const AllDashboardTable: React.FC = ({ query }) => { projectTitle: application.node.applicationSowDataByApplicationId?.nodes[0]?.jsonData ?.projectTitle || application.node.projectName, + isCbcProject: false, + showLink: true, })), ...(showCbcProjects - ? allCbcProjects?.nodes[0]?.jsonData?.map((project) => ({ - ...project, + ? allCbcData.edges.map((project) => ({ + rowId: project.node.cbcId, + ...project.node.jsonData, zones: [], - intakeNumber: project.intake, - projectId: project.projectNumber, + intakeNumber: project.node.jsonData.intake, + projectId: project.node.jsonData.projectNumber, internalStatus: null, - externalStatus: project.projectStatus - ? cbcProjectStatusConverter(project.projectStatus) + externalStatus: project.node.jsonData.projectStatus + ? cbcProjectStatusConverter(project.node.jsonData.projectStatus) : null, packageNumber: null, - organizationName: project.currentOperatingName || null, + organizationName: + project.node.jsonData.currentOperatingName || null, lead: null, isCbcProject: true, + showLink: showCbcProjectsLink, })) ?? [] : []), ]; - }, [allApplications, allCbcProjects, showCbcProjects]); + }, [allApplications, allCbcData, showCbcProjects, showCbcProjectsLink]); const columns = useMemo[]>(() => { const uniqueIntakeNumbers = [ diff --git a/app/components/HeaderBanner.tsx b/app/components/HeaderBanner.tsx index 44addb88d0..5d72d17307 100644 --- a/app/components/HeaderBanner.tsx +++ b/app/components/HeaderBanner.tsx @@ -8,11 +8,12 @@ import getConfig from 'next/config'; import styled from 'styled-components'; interface StyledHeaderBannerProps { - type: 'success' | 'warn' | 'error'; + type: 'success' | 'warn' | 'error' | 'custom'; } const StyledBaseHeaderBanner = styled(BaseHeader)` - color: ${(props) => props.theme.color.white}; + color: ${(props) => + props.type === 'custom' ? props.customFontColor : props.theme.color.white}; font-size: 11px; font-weight: bold; padding-left: 30px; @@ -26,6 +27,9 @@ const StyledBaseHeaderBanner = styled(BaseHeader)` if (props.type === 'success') { return props.theme.color.success; } + if (props.type === 'custom') { + return props.customBannerColor; + } return props.theme.color.backgroundMagenta; }}; `; @@ -38,14 +42,18 @@ const StyledDiv = styled('div')` interface Props { message: string; - type: 'success' | 'warn' | 'error'; + type: 'success' | 'warn' | 'error' | 'custom'; environmentIndicator: boolean; + customBannerColor?: string; + customFontColor?: string; } const HeaderBanner: React.FC = ({ message, type, environmentIndicator, + customBannerColor, + customFontColor, }) => { const publicRuntimeConfig = getConfig()?.publicRuntimeConfig; const namespace = publicRuntimeConfig?.OPENSHIFT_APP_NAMESPACE; @@ -63,7 +71,12 @@ const HeaderBanner: React.FC = ({ )} {message && ( - + = ({ isLoggedIn = false, title = '' }) => { const router = useRouter(); const isApplicantPortal = router?.pathname.startsWith('/applicantportal'); + const isCbcPage = router?.pathname.includes('/cbc/'); const useCustomLogin = useFeature('use_custom_login').value; const useDirectIdir = useFeature('use_direct_idir').value; const { value: banner } = useFeature('header-banner'); @@ -118,6 +119,15 @@ const Navigation: React.FC = ({ isLoggedIn = false, title = '' }) => { + {isCbcPage && ( + + )} {isApplicantPortal && } ); diff --git a/app/cypress/e2e/analyst/cbc/[cbcId].cy.js b/app/cypress/e2e/analyst/cbc/[cbcId].cy.js new file mode 100644 index 0000000000..08ead52efc --- /dev/null +++ b/app/cypress/e2e/analyst/cbc/[cbcId].cy.js @@ -0,0 +1,26 @@ +describe('The cbc project view', () => { + beforeEach(() => { + cy.mockLogin('ccbc_admin'); + const mockedDateString = '2024-01-03'; + const mockedDate = new Date(mockedDateString); + cy.useMockedTime(mockedDate); + cy.sqlFixture('e2e/reset_db'); + cy.sqlFixture('e2e/001_intake'); + cy.sqlFixture('e2e/001_application'); + cy.sqlFixture('e2e/001_application_received'); + cy.sqlFixture('e2e/001_analyst'); + }); + + it('loads', () => { + cy.visit('/analyst/cbc/1'); + cy.contains('h1', 'Project 1'); + cy.contains('h2', 'Tombstone'); + cy.contains('h2', 'Project type'); + cy.contains('h2', 'Locations and counts'); + cy.contains('h2', 'Funding'); + cy.contains('h2', 'Events and dates'); + cy.contains('h2', 'Miscellaneous'); + cy.contains('h2', 'Project data reviews'); + cy.get('body').happoScreenshot({ component: 'CBC project view' }); + }); +}); diff --git a/app/formSchema/analyst/cbc/eventsAndDates.ts b/app/formSchema/analyst/cbc/eventsAndDates.ts new file mode 100644 index 0000000000..77964a3188 --- /dev/null +++ b/app/formSchema/analyst/cbc/eventsAndDates.ts @@ -0,0 +1,54 @@ +import { RJSFSchema } from '@rjsf/utils'; + +const eventsAndDates: RJSFSchema = { + title: 'Events and dates', + description: '', + type: 'object', + properties: { + nditConditionalApprovalLetterSent: { + type: 'string', + title: 'NDIT Conditional Approval Letter Sent', + enum: [null, 'Yes', 'No'], + }, + bindingAgreementSignedNditRecipient: { + type: 'string', + title: 'Binding Agreement Signed - NDIT Recipient', + enum: [null, 'Yes', 'No'], + }, + announcedByProvince: { + type: 'string', + title: 'Announced by Province', + enum: [null, 'Yes', 'No'], + }, + dateApplicationReceived: { + type: 'string', + title: 'Date Application Received', + }, + dateConditionallyApproved: { + type: 'string', + title: 'Date Conditionally Approved', + }, + dateAgreementSigned: { + type: 'string', + title: 'Date Agreement Signed', + }, + proposedStartDate: { + type: 'string', + title: 'Proposed Start Date', + }, + proposedCompletionDate: { + type: 'string', + title: 'Proposed Completion Date', + }, + reportingCompletionDate: { + type: 'string', + title: 'Reporting Completion Date', + }, + dateAnnounced: { + type: 'string', + title: 'Date Announced', + }, + }, +}; + +export default eventsAndDates; diff --git a/app/formSchema/analyst/cbc/funding.ts b/app/formSchema/analyst/cbc/funding.ts new file mode 100644 index 0000000000..fb18abb54f --- /dev/null +++ b/app/formSchema/analyst/cbc/funding.ts @@ -0,0 +1,31 @@ +import { RJSFSchema } from '@rjsf/utils'; + +const funding: RJSFSchema = { + title: 'Funding', + description: '', + type: 'object', + properties: { + bcFundingRequest: { + type: 'number', + title: 'BC Funding Request', + }, + federalFunding: { + type: 'number', + title: 'Federal Funding', + }, + applicantAmount: { + type: 'number', + title: 'Applicant Amount', + }, + otherFunding: { + type: 'number', + title: 'Other Amount', + }, + totalProjectBudget: { + type: 'number', + title: 'Total Project Budget', + }, + }, +}; + +export default funding; diff --git a/app/formSchema/analyst/cbc/locationsAndCounts.ts b/app/formSchema/analyst/cbc/locationsAndCounts.ts new file mode 100644 index 0000000000..21904fdd55 --- /dev/null +++ b/app/formSchema/analyst/cbc/locationsAndCounts.ts @@ -0,0 +1,39 @@ +import { RJSFSchema } from '@rjsf/utils'; + +const locationsAndCounts: RJSFSchema = { + title: 'Locations and counts', + description: '', + type: 'object', + properties: { + projectLocations: { + type: 'string', + title: 'Project Locations', + }, + communitiesAndLocalesCount: { + type: 'number', + title: 'Communities and locales count', + }, + indigenousCommunities: { + type: 'number', + title: 'Indigenous Communities', + }, + householdCount: { + type: 'number', + title: 'Household count', + }, + transportKm: { + type: 'number', + title: 'Transport km', + }, + highwayKm: { + type: 'number', + title: 'Highway km', + }, + restAreas: { + type: 'number', + title: 'Rest areas', + }, + }, +}; + +export default locationsAndCounts; diff --git a/app/formSchema/analyst/cbc/miscellaneous.ts b/app/formSchema/analyst/cbc/miscellaneous.ts new file mode 100644 index 0000000000..f18dbb62a3 --- /dev/null +++ b/app/formSchema/analyst/cbc/miscellaneous.ts @@ -0,0 +1,35 @@ +import { RJSFSchema } from '@rjsf/utils'; + +const miscellaneous: RJSFSchema = { + title: 'Miscellaneous', + description: '', + type: 'object', + properties: { + projectMilestoneCompleted: { + type: 'number', + title: '% Project Milestone Completed', + }, + constructionCompletedOn: { + type: 'string', + title: 'Construction Completed on', + }, + milestoneComments: { + type: 'string', + title: 'Milestone Comments', + }, + primaryNewsRelease: { + type: 'string', + title: 'Primary News Release', + }, + secondaryNewsRelease: { + type: 'string', + title: 'Secondary News Release', + }, + notes: { + type: 'string', + title: 'Notes', + }, + }, +}; + +export default miscellaneous; diff --git a/app/formSchema/analyst/cbc/projectDataReviews.ts b/app/formSchema/analyst/cbc/projectDataReviews.ts new file mode 100644 index 0000000000..f6745d6669 --- /dev/null +++ b/app/formSchema/analyst/cbc/projectDataReviews.ts @@ -0,0 +1,23 @@ +import { RJSFSchema } from '@rjsf/utils'; + +const projectDataReviews: RJSFSchema = { + title: 'Project data reviews', + description: '', + type: 'object', + properties: { + locked: { + type: 'boolean', + title: 'Locked', + }, + lastReviewed: { + type: 'string', + title: 'Last Reviewed', + }, + reviewNotes: { + type: 'string', + title: 'Review Notes', + }, + }, +}; + +export default projectDataReviews; diff --git a/app/formSchema/analyst/cbc/projectType.ts b/app/formSchema/analyst/cbc/projectType.ts new file mode 100644 index 0000000000..173963cd0c --- /dev/null +++ b/app/formSchema/analyst/cbc/projectType.ts @@ -0,0 +1,40 @@ +import { RJSFSchema } from '@rjsf/utils'; + +const projectType: RJSFSchema = { + title: 'Project type', + description: '', + type: 'object', + properties: { + projectType: { + type: 'string', + title: 'Project Type', + enum: [null, 'Transport', 'Highway', 'Last Mile'], + }, + transportProjectType: { + type: 'string', + title: 'Transport Project Type', + enum: [null, 'Fibre', 'Microwave'], + }, + highwayProjectType: { + type: 'string', + title: 'Highway Project Type', + }, + lastMileProjectType: { + type: 'string', + title: 'Last Mile Project Type', + enum: [null, 'Fibre', 'Coaxial', 'LTE'], + }, + lastMileMinimumSpeed: { + type: 'string', + title: 'Last Mile Minimum Speed', + enum: [null, 25, 50], + }, + connectedCoastNetworkDependant: { + type: 'string', + title: 'Connected Coast Network Dependant', + enum: [null, 'Yes', 'No'], + }, + }, +}; + +export default projectType; diff --git a/app/formSchema/analyst/cbc/review.ts b/app/formSchema/analyst/cbc/review.ts new file mode 100644 index 0000000000..ffa71f1568 --- /dev/null +++ b/app/formSchema/analyst/cbc/review.ts @@ -0,0 +1,58 @@ +import { RJSFSchema } from '@rjsf/utils'; +import cbcTombstone from './tombstone'; +import projectType from './projectType'; +import locationsAndCounts from './locationsAndCounts'; +import funding from './funding'; +import eventsAndDates from './eventsAndDates'; +import miscellaneous from './miscellaneous'; +import projectDataReviews from './projectDataReviews'; + +const review: RJSFSchema = { + type: 'object', + properties: { + tombstone: { + title: cbcTombstone.title, + properties: { + ...cbcTombstone.properties, + }, + }, + projectType: { + title: projectType.title, + properties: { + ...projectType.properties, + }, + }, + locationsAndCounts: { + title: locationsAndCounts.title, + properties: { + ...locationsAndCounts.properties, + }, + }, + funding: { + title: funding.title, + properties: { + ...funding.properties, + }, + }, + eventsAndDates: { + title: eventsAndDates.title, + properties: { + ...eventsAndDates.properties, + }, + }, + miscellaneous: { + title: miscellaneous.title, + properties: { + ...miscellaneous.properties, + }, + }, + projectDataReviews: { + title: projectDataReviews.title, + properties: { + ...projectDataReviews.properties, + }, + }, + }, +}; + +export default review; diff --git a/app/formSchema/analyst/cbc/tombstone.ts b/app/formSchema/analyst/cbc/tombstone.ts new file mode 100644 index 0000000000..1c9b8558dd --- /dev/null +++ b/app/formSchema/analyst/cbc/tombstone.ts @@ -0,0 +1,67 @@ +import { RJSFSchema } from '@rjsf/utils'; + +const cbcTombstone: RJSFSchema = { + title: 'Tombstone', + description: '', + type: 'object', + properties: { + projectNumber: { + type: 'string', + title: 'Project Number', + }, + originalProjectNumber: { + type: 'string', + title: 'Original Project Number', + }, + phase: { + type: 'string', + title: 'Project Phase', + enum: ['1', '2', '3', '4', '4b'], + }, + intake: { + type: 'string', + title: 'Intake', + enum: [null, '1', '2', '3', '4', '5', '6'], + }, + projectStatus: { + type: 'string', + title: 'Project Status', + }, + changeRequestPending: { + type: 'boolean', + title: 'Change Request Pending', + }, + projectTitle: { + type: 'string', + title: 'Project Title', + }, + projectDescription: { + type: 'string', + title: 'Project Description', + }, + applicantContractualName: { + type: 'string', + title: 'Applicant Contractual Name', + }, + currentOperatingName: { + type: 'string', + title: 'Current Operating Name', + }, + eightThirtyMillionFunding: { + type: 'string', + title: '$8.30 Million Funding', + enum: [null, 'Yes', 'No'], + }, + federalFundingSource: { + type: 'string', + title: 'Federal Funding Source', + enum: [null, 'CRTC', 'CTI', 'UBF', 'UBF RRS'], + }, + federalProjectNumber: { + type: 'string', + title: 'Federal Project Number', + }, + }, +}; + +export default cbcTombstone; diff --git a/app/formSchema/uiSchema/cbc/editUiSchema.ts b/app/formSchema/uiSchema/cbc/editUiSchema.ts new file mode 100644 index 0000000000..daa80ad1d8 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/editUiSchema.ts @@ -0,0 +1,42 @@ +import projectTypeUiSchema from './projectTypeUiSchema'; +import tombstoneUiSchema from './tombstoneUiSchema'; +import locationsAndCountsUiSchema from './locationsAndCountsUiSchema'; +import fundingUiSchema from './fundingUiSchema'; + +import eventsAndDatesUiSchema from './eventsAndDatesUiSchema'; +import miscellaneousUiSchema from './miscellaneousUiSchema'; +import projectDataReviewsUiSchema from './projectDataReviewsUiSchema'; + +const editUiSchema = { + 'ui:title': 'CBC Edit', + tombstone: { + 'ui:title': 'Tombstone', + ...tombstoneUiSchema, + }, + projectType: { + 'ui:title': 'Project Type', + ...projectTypeUiSchema, + }, + locationsAndCounts: { + 'ui:title': 'Locations and Counts', + ...locationsAndCountsUiSchema, + }, + funding: { + 'ui:title': 'Funding', + ...fundingUiSchema, + }, + eventsAndDates: { + 'ui:title': 'Events and Dates', + ...eventsAndDatesUiSchema, + }, + miscellaneous: { + 'ui:title': 'Miscellaneous', + ...miscellaneousUiSchema, + }, + projectDataReviews: { + 'ui:title': 'Project Data Reviews', + ...projectDataReviewsUiSchema, + }, +}; + +export default editUiSchema; diff --git a/app/formSchema/uiSchema/cbc/eventsAndDatesUiSchema.ts b/app/formSchema/uiSchema/cbc/eventsAndDatesUiSchema.ts new file mode 100644 index 0000000000..12f36302a9 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/eventsAndDatesUiSchema.ts @@ -0,0 +1,49 @@ +const eventsAndDatesUiSchema = { + 'ui:field': 'SectionField', + 'ui:options': { + dividers: true, + }, + 'ui:title': 'Events and Dates', + nditConditionalApprovalLetterSent: { + 'ui:widget': 'TextAreaWidget', + 'ui:label': 'NDIT Conditional Approval Letter Sent', + }, + bindingAgreementSignedNditRecipient: { + 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Binding Agreement Signed NDIT Recipient', + }, + announcedByProvince: { + 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Announced By Province', + }, + dateApplicationReceived: { + 'ui:widget': 'DatePickerWidget', + 'ui:label': 'Date Application Received', + }, + dateConditionallyApprovedApproved: { + 'ui:widget': 'DatePickerWidget', + 'ui:label': 'Date Conditionally Approved Approved', + }, + dateAgreementSigned: { + 'ui:widget': 'DatePickerWidget', + 'ui:label': 'Date Agreement Signed', + }, + proposedStartDate: { + 'ui:widget': 'DatePickerWidget', + 'ui:label': 'Proposed Start Date', + }, + proposedCompletionDate: { + 'ui:widget': 'DatePickerWidget', + 'ui:label': 'Proposed Completion Date', + }, + reportingCompletionDate: { + 'ui:widget': 'DatePickerWidget', + 'ui:label': 'Reporting Completion Date', + }, + dateAnnounced: { + 'ui:widget': 'DatePickerWidget', + 'ui:label': 'Date Announced', + }, +}; + +export default eventsAndDatesUiSchema; diff --git a/app/formSchema/uiSchema/cbc/fundingUiSchema.ts b/app/formSchema/uiSchema/cbc/fundingUiSchema.ts new file mode 100644 index 0000000000..6c8a8bada5 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/fundingUiSchema.ts @@ -0,0 +1,29 @@ +const fundingUiSchema = { + 'ui:field': 'SectionField', + 'ui:options': { + dividers: true, + }, + 'ui:title': 'Funding', + bcFundingRequest: { + 'ui:widget': 'MoneyWidget', + 'ui:label': 'BC Funding Request', + }, + federalFunding: { + 'ui:widget': 'MoneyWidget', + 'ui:label': 'Federal Funding', + }, + applicantAmount: { + 'ui:widget': 'MoneyWidget', + 'ui:label': 'Applicant Amount', + }, + otherFunding: { + 'ui:widget': 'MoneyWidget', + 'ui:label': 'Other Funding', + }, + totalProjectBudget: { + 'ui:widget': 'MoneyWidget', + 'ui:label': 'Total Project Budget', + }, +}; + +export default fundingUiSchema; diff --git a/app/formSchema/uiSchema/cbc/locationsAndCountsUiSchema.ts b/app/formSchema/uiSchema/cbc/locationsAndCountsUiSchema.ts new file mode 100644 index 0000000000..5995349975 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/locationsAndCountsUiSchema.ts @@ -0,0 +1,37 @@ +const locationsAndCountsUiSchema = { + 'ui:field': 'SectionField', + 'ui:options': { + dividers: true, + }, + 'ui:title': 'Locations and Counts', + projectLocations: { + 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Project Locations', + }, + communitiesAndLocalesCount: { + 'ui:widget': 'NumberWidget', + 'ui:label': 'Communities and Locales Count', + }, + indigenousCommunities: { + 'ui:widget': 'NumberWidget', + 'ui:label': 'Indigenous Communities', + }, + householdCount: { + 'ui:widget': 'NumberWidget', + 'ui:label': 'Household Count', + }, + transportKm: { + 'ui:widget': 'NumberWidget', + 'ui:label': 'Transport Km', + }, + highwayKm: { + 'ui:widget': 'NumberWidget', + 'ui:label': 'Highway Km', + }, + restAreas: { + 'ui:widget': 'NumberWidget', + 'ui:label': 'Rest Areas', + }, +}; + +export default locationsAndCountsUiSchema; diff --git a/app/formSchema/uiSchema/cbc/miscellaneousUiSchema.ts b/app/formSchema/uiSchema/cbc/miscellaneousUiSchema.ts new file mode 100644 index 0000000000..d8763e9dd0 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/miscellaneousUiSchema.ts @@ -0,0 +1,33 @@ +const miscellaneousUiSchema = { + 'ui:field': 'SectionField', + 'ui:options': { + dividers: true, + }, + 'ui:title': 'Miscellaneous', + projectMilestoneCompleted: { + 'ui:widget': 'NumberWidget', + 'ui:label': 'Project Milestone Completed', + }, + constructionCompletedOn: { + 'ui:widget': 'DatePickerWidget', + 'ui:label': 'Construction Completed On', + }, + milestoneComments: { + 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Milestone Comments', + }, + primaryNewsRelease: { + 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Primary News Release', + }, + secondaryNewsRelease: { + 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Secondary News Release', + }, + notes: { + 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Notes', + }, +}; + +export default miscellaneousUiSchema; diff --git a/app/formSchema/uiSchema/cbc/projectDataReviewsUiSchema.ts b/app/formSchema/uiSchema/cbc/projectDataReviewsUiSchema.ts new file mode 100644 index 0000000000..9220fc91e2 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/projectDataReviewsUiSchema.ts @@ -0,0 +1,20 @@ +const projectDataReviewsUiSchema = { + 'ui:field': 'SectionField', + 'ui:options': { + dividers: true, + }, + 'ui:title': 'Project Data Reviews', + locked: { + 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Locked', + }, + lastReviewed: { + 'ui:widget': 'DatePickerWidget', + 'ui:label': 'Last Reviewed', + }, + reviewNotes: { + 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Review Notes', + }, +}; +export default projectDataReviewsUiSchema; diff --git a/app/formSchema/uiSchema/cbc/projectTypeUiSchema.ts b/app/formSchema/uiSchema/cbc/projectTypeUiSchema.ts new file mode 100644 index 0000000000..8bea7b0e44 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/projectTypeUiSchema.ts @@ -0,0 +1,39 @@ +const projectTypeUiSchema = { + 'ui:field': 'SectionField', + 'ui:options': { + dividers: true, + }, + 'ui:title': 'Project Type', + projectType: { + 'ui:widget': 'SelectWidget', + 'ui:placeholder': 'Select a project type', + 'ui:label': 'Project Type', + }, + transportProjectType: { + 'ui:widget': 'SelectWidget', + 'ui:placeholder': 'Select a transport project type', + 'ui:label': 'Transport Project Type', + }, + highwayProjectType: { + 'ui:widget': 'SelectWidget', + 'ui:placeholder': 'Select a highway project type', + 'ui:label': 'Highway Project Type', + }, + lastMileProjectType: { + 'ui:widget': 'SelectWidget', + 'ui:placeholder': 'Select a last mile project type', + 'ui:label': 'Last Mile Project Type', + }, + lastMileMinimumSpeed: { + 'ui:widget': 'SelectWidget', + 'ui:placeholder': 'Select a last mile minimum speed', + 'ui:label': 'Last Mile Minimum Speed', + }, + connectedCoastNetworkDependant: { + 'ui:widget': 'SelectWidget', + 'ui:placeholder': 'Select a connected coast network dependant', + 'ui:label': 'Connected Coast Network Dependant', + }, +}; + +export default projectTypeUiSchema; diff --git a/app/formSchema/uiSchema/cbc/reviewUiSchema.ts b/app/formSchema/uiSchema/cbc/reviewUiSchema.ts new file mode 100644 index 0000000000..4d72fc15f8 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/reviewUiSchema.ts @@ -0,0 +1,49 @@ +import projectTypeUiSchema from './projectTypeUiSchema'; +import tombstoneUiSchema from './tombstoneUiSchema'; +import locationsAndCountsUiSchema from './locationsAndCountsUiSchema'; +import fundingUiSchema from './fundingUiSchema'; + +import eventsAndDatesUiSchema from './eventsAndDatesUiSchema'; +import miscellaneousUiSchema from './miscellaneousUiSchema'; +import projectDataReviewsUiSchema from './projectDataReviewsUiSchema'; + +const reviewUiSchema = { + tombstone: { + ...tombstoneUiSchema, + projectNumber: { + 'ui:widget': 'TextWidget', + }, + phase: { + 'ui:widget': 'TextWidget', + }, + intake: { + 'ui:widget': 'TextWidget', + }, + projectStatus: { + 'ui:widget': 'TextWidget', + }, + projectTitle: { + 'ui:widget': 'TextWidget', + }, + }, + projectType: { + ...projectTypeUiSchema, + }, + locationsAndCounts: { + ...locationsAndCountsUiSchema, + }, + funding: { + ...fundingUiSchema, + }, + eventsAndDates: { + ...eventsAndDatesUiSchema, + }, + miscellaneous: { + ...miscellaneousUiSchema, + }, + projectDataReviews: { + ...projectDataReviewsUiSchema, + }, +}; + +export default reviewUiSchema; diff --git a/app/formSchema/uiSchema/cbc/tombstoneUiSchema.ts b/app/formSchema/uiSchema/cbc/tombstoneUiSchema.ts new file mode 100644 index 0000000000..d49559f973 --- /dev/null +++ b/app/formSchema/uiSchema/cbc/tombstoneUiSchema.ts @@ -0,0 +1,65 @@ +const tombstoneUiSchema = { + // 'ui:order': ['projectTitle', 'projectNumber', 'projectPhase'], + 'ui:field': 'SectionField', + 'ui:options': { + dividers: true, + }, + 'ui:title': 'Tombstone', + projectTitle: { + 'ui:widget': 'HiddenWidget', + 'ui:label': 'Project Title', + }, + originalProjectNumber: { + 'ui:widget': 'NumberWidget', + 'ui:label': 'Original Project Number', + }, + projectNumber: { + 'ui:widget': 'HiddenWidget', + 'ui:label': 'Project Number', + }, + phase: { + 'ui:widget': 'HiddenWidget', + 'ui:placeholder': 'Select a phase', + 'ui:label': 'Phase', + }, + intake: { + 'ui:widget': 'HiddenWidget', + 'ui:placeholder': 'Select an intake', + 'ui:label': 'Intake', + }, + projectStatus: { + 'ui:widget': 'HiddenWidget', + 'ui:placeholder': 'Select a status', + 'ui:label': 'Status', + }, + changeRequestPending: { + 'ui:widget': 'CheckboxWidget', + 'ui:label': 'Change Request Pending', + }, + projectDescription: { + 'ui:widget': 'TextAreaWidget', + 'ui:label': 'Project Description', + }, + applicantContractualName: { + 'ui:widget': 'TextWidget', + 'ui:label': 'Applicant Contractual Name', + }, + currentOperatingName: { + 'ui:widget': 'TextWidget', + 'ui:label': 'Current Operating Name', + }, + eightThirtyMillionFunding: { + 'ui:widget': 'TextWidget', + 'ui:label': '8.30M Funding', + }, + federalFundingSource: { + 'ui:widget': 'TextWidget', + 'ui:label': 'Federal Funding Source', + }, + federalProjectNumber: { + 'ui:widget': 'TextWidget', + 'ui:label': 'Federal Project Number', + }, +}; + +export default tombstoneUiSchema; diff --git a/app/pages/analyst/cbc/[cbcId].tsx b/app/pages/analyst/cbc/[cbcId].tsx new file mode 100644 index 0000000000..f6f913b172 --- /dev/null +++ b/app/pages/analyst/cbc/[cbcId].tsx @@ -0,0 +1,263 @@ +import { graphql } from 'react-relay'; +import { usePreloadedQuery } from 'react-relay/hooks'; +import { withRelay, RelayProps } from 'relay-nextjs'; +import { CbcIdQuery } from '__generated__/CbcIdQuery.graphql'; +import defaultRelayOptions from 'lib/relay/withRelayOptions'; +import Layout from 'components/Layout'; +import CbcAnalystLayout from 'components/Analyst/CBC/CbcAnalystLayout'; +import CbcForm from 'components/Analyst/CBC/CbcForm'; +import styled from 'styled-components'; +import ReviewTheme from 'components/Review/ReviewTheme'; +import { useRef, useState } from 'react'; +import { ProjectTheme } from 'components/Analyst/Project'; +import { useUpdateCbcDataByRowIdMutation } from 'schema/mutations/cbc/updateCbcData'; +import review from 'formSchema/analyst/cbc/review'; +import reviewUiSchema from 'formSchema/uiSchema/cbc/reviewUiSchema'; +import editUiSchema from 'formSchema/uiSchema/cbc/editUiSchema'; +import { useFeature } from '@growthbook/growthbook-react'; + +const getCbcQuery = graphql` + query CbcIdQuery($rowId: Int!) { + cbcByRowId(rowId: $rowId) { + projectNumber + rowId + sharepointTimestamp + cbcDataByCbcId { + edges { + node { + jsonData + sharepointTimestamp + rowId + projectNumber + updatedAt + updatedBy + } + } + } + } + session { + sub + } + ...CbcAnalystLayout_query + } +`; + +const StyledCbcForm = styled(CbcForm)` + margin-bottom: 0px; +`; + +const StyledButton = styled('button')` + color: ${(props) => props.theme.color.links}; +`; + +const RightAlignText = styled('div')` + padding-top: 20px; + text-align: right; + padding-bottom: 4px; +`; + +const Cbc = ({ + preloadedQuery, +}: RelayProps, CbcIdQuery>) => { + const query = usePreloadedQuery(getCbcQuery, preloadedQuery); + + const allowEdit = useFeature('show_cbc_edit').value ?? false; + const [toggleOverride, setToggleExpandOrCollapseAll] = useState< + boolean | undefined + >(undefined); + + const [editMode, setEditMode] = useState(false); + const hiddenSubmitRef = useRef(null); + const { cbcByRowId, session } = query; + const { cbcDataByCbcId } = cbcByRowId; + const { edges } = cbcDataByCbcId; + const cbcData = edges[0].node; + const { jsonData } = cbcData; + + const tombstone = { + projectNumber: jsonData.projectNumber, + originalProjectNumber: jsonData.originalProjectNumber, + phase: jsonData.phase, + intake: jsonData.intake, + projectStatus: jsonData.projectStatus, + changeRequestPending: jsonData.changeRequestPending, + projectTitle: jsonData.projectTitle, + projectDescription: jsonData.projectDescription, + applicantContractualName: jsonData.applicantContractualName, + currentOperatingName: jsonData.currentOperatingName, + eightThirtyMillionFunding: jsonData.eightThirtyMillionFunding, + federalFundingSource: jsonData.federalFundingSource, + federalProjectNumber: jsonData.federalProjectNumber, + }; + + const projectType = { + projectType: jsonData.projectType, + transportProjectType: jsonData.transportProjectType, + highwayProjectType: jsonData.highwayProjectType, + lastMileProjectType: jsonData.lastMileProjectType, + lastMileMinimumSpeed: jsonData.lastMileMinimumSpeed, + connectedCoastNetworkDependant: jsonData.connectedCoastNetworkDependant, + }; + const locationsAndCounts = { + projectLocations: jsonData.projectLocations, + communitiesAndLocalesCount: jsonData.communitiesAndLocalesCount, + indigenousCommunities: jsonData.indigenousCommunities, + householdCount: jsonData.householdCount, + transportKm: jsonData.transportKm, + highwayKm: jsonData.highwayKm, + restAreas: jsonData.restAreas, + }; + + const funding = { + bcFundingRequest: jsonData.bcFundingRequest, + federalFunding: jsonData.federalFunding, + applicantAmount: jsonData.applicantAmount, + otherFunding: jsonData.otherFunding, + totalProjectBudget: jsonData.totalProjectBudget, + }; + + const eventsAndDates = { + nditConditionalApprovalLetterSent: + jsonData.nditConditionalApprovalLetterSent, + bindingAgreementSignedNditRecipient: + jsonData.bindingAgreementSignedNditRecipient, + announcedByProvince: jsonData.announcedByProvince, + dateApplicationReceived: jsonData.dateApplicationReceived, + dateConditionallyApproved: jsonData.dateConditionallyApproved, + dateAgreementSigned: jsonData.dateAgreementSigned, + proposedStartDate: jsonData.proposedStartDate, + proposedCompletionDate: jsonData.proposedCompletionDate, + reportingCompletionDate: jsonData.reportingCompletionDate, + dateAnnounced: jsonData.dateAnnounced, + }; + + const miscellaneous = { + projectMilestoneCompleted: jsonData.projectMilestoneCompleted, + constructionCompletedOn: jsonData.constructionCompletedOn, + milestoneComments: jsonData.milestoneComments, + primaryNewsRelease: jsonData.primaryNewsRelease, + secondaryNewsRelease: jsonData.secondaryNewsRelease, + notes: jsonData.notes, + }; + + const projectDataReviews = { + locked: jsonData.locked, + lastReviewed: jsonData.lastReviewed, + reviewNotes: jsonData.reviewNotes, + }; + + const [formData, setFormData] = useState({ + tombstone, + projectType, + locationsAndCounts, + funding, + eventsAndDates, + miscellaneous, + projectDataReviews, + }); + const [updateFormData] = useUpdateCbcDataByRowIdMutation(); + + const handleSubmit = (e) => { + hiddenSubmitRef.current.click(); + e.preventDefault(); + updateFormData({ + variables: { + input: { + rowId: cbcData.rowId, + cbcDataPatch: { + jsonData: { + ...formData.tombstone, + ...formData.projectType, + ...formData.locationsAndCounts, + ...formData.funding, + ...formData.eventsAndDates, + ...formData.miscellaneous, + ...formData.projectDataReviews, + }, + }, + }, + }, + debounceKey: 'cbc_update_form_data', + onCompleted: () => { + setEditMode(false); + }, + }); + }; + + const handleResetFormData = () => { + setEditMode(false); + setFormData({} as any); + }; + + return ( + + + + {!editMode && ( + <> + { + setToggleExpandOrCollapseAll(true); + }} + type="button" + > + Expand all + + {' | '} + { + setToggleExpandOrCollapseAll(false); + }} + type="button" + > + Collapse all + + {' | '} + + )} + {allowEdit && ( + { + setEditMode(!editMode); + }} + type="button" + > + {editMode ? 'Cancel quick edit' : 'Quick edit'} + + )} + + { + setFormData({ ...e.formData }); + }} + hiddenSubmitRef={hiddenSubmitRef} + isExpanded + isFormAnimated={false} + isFormEditMode={editMode} + title="CBC Form" + schema={review} + theme={editMode ? ProjectTheme : ReviewTheme} + uiSchema={editMode ? editUiSchema : reviewUiSchema} + resetFormData={handleResetFormData} + onSubmit={handleSubmit} + setIsFormEditMode={setEditMode} + saveBtnText="Save & Close" + /> + + + ); +}; + +export const withRelayOptions = { + ...defaultRelayOptions, + + variablesFromContext: (ctx) => { + return { + rowId: parseInt(ctx.query.cbcId.toString(), 10), + }; + }, +}; + +export default withRelay(Cbc, getCbcQuery, withRelayOptions); diff --git a/app/pages/analyst/cbc/[cbcId]/cbcHistory.tsx b/app/pages/analyst/cbc/[cbcId]/cbcHistory.tsx new file mode 100644 index 0000000000..eb7f621b7d --- /dev/null +++ b/app/pages/analyst/cbc/[cbcId]/cbcHistory.tsx @@ -0,0 +1,58 @@ +import CbcAnalystLayout from 'components/Analyst/CBC/CbcAnalystLayout'; +import Layout from 'components/Layout'; +import { usePreloadedQuery } from 'react-relay/hooks'; +import { withRelay, RelayProps } from 'relay-nextjs'; +import { graphql } from 'react-relay'; +import defaultRelayOptions from 'lib/relay/withRelayOptions'; +import { cbcHistoryQuery } from '__generated__/cbcHistoryQuery.graphql'; + +const getCbcHistoryQuery = graphql` + query cbcHistoryQuery($rowId: Int!) { + cbcByRowId(rowId: $rowId) { + projectNumber + rowId + sharepointTimestamp + cbcDataByCbcId { + edges { + node { + jsonData + sharepointTimestamp + rowId + projectNumber + updatedAt + updatedBy + } + } + } + } + session { + sub + } + ...CbcAnalystLayout_query + } +`; + +const CbcHistory = ({ + preloadedQuery, +}: RelayProps, cbcHistoryQuery>) => { + const query = usePreloadedQuery(getCbcHistoryQuery, preloadedQuery); + return ( + + +

Under construction...

+
+
+ ); +}; + +export const withRelayOptions = { + ...defaultRelayOptions, + + variablesFromContext: (ctx) => { + return { + rowId: parseInt(ctx.query.cbcId.toString(), 10), + }; + }, +}; + +export default withRelay(CbcHistory, getCbcHistoryQuery, withRelayOptions); diff --git a/app/schema/mutations/cbc/updateCbcData.ts b/app/schema/mutations/cbc/updateCbcData.ts new file mode 100644 index 0000000000..9c3d499948 --- /dev/null +++ b/app/schema/mutations/cbc/updateCbcData.ts @@ -0,0 +1,24 @@ +import { graphql } from 'react-relay'; +import { updateCbcDataByRowIdMutation } from '__generated__/updateCbcDataByRowIdMutation.graphql'; +import useDebouncedMutation from '../useDebouncedMutation'; + +const mutation = graphql` + mutation updateCbcDataByRowIdMutation($input: UpdateCbcDataByRowIdInput!) { + updateCbcDataByRowId(input: $input) { + cbcData { + id + rowId + jsonData + updatedAt + } + } + } +`; + +const useUpdateCbcDataByRowIdMutation = () => + useDebouncedMutation( + mutation, + () => 'An error occurred while attempting to update the cbc data.' + ); + +export { mutation, useUpdateCbcDataByRowIdMutation }; diff --git a/app/schema/mutations/useDebouncedMutation.ts b/app/schema/mutations/useDebouncedMutation.ts index 0986005e2e..751f0692e1 100644 --- a/app/schema/mutations/useDebouncedMutation.ts +++ b/app/schema/mutations/useDebouncedMutation.ts @@ -1,13 +1,13 @@ -import { CacheConfigWithDebounce } from '../../lib/relay/debounceMutationMiddleware'; import { UseMutationConfig } from 'react-relay'; -import { commitMutation as baseCommitMutation } from 'relay-runtime'; import { + commitMutation as baseCommitMutation, Disposable, GraphQLTaggedNode, IEnvironment, MutationConfig, MutationParameters, } from 'relay-runtime'; +import { CacheConfigWithDebounce } from '../../lib/relay/debounceMutationMiddleware'; import useMutationWithErrorMessage from './useMutationWithErrorMessage'; const debouncedMutationMap = new Map(); @@ -19,13 +19,13 @@ export interface DebouncedMutationConfig } export interface UseDebouncedMutationConfig< - TMutation extends MutationParameters + TMutation extends MutationParameters, > extends UseMutationConfig { debounceKey: string; } export default function useDebouncedMutation< - TMutation extends MutationParameters + TMutation extends MutationParameters, >(mutation: GraphQLTaggedNode, getErrorMessage: (relayError: Error) => string) { const commitMutationFn = ( environment: IEnvironment, diff --git a/app/schema/schema.graphql b/app/schema/schema.graphql index d120513cca..47a88ce763 100644 --- a/app/schema/schema.graphql +++ b/app/schema/schema.graphql @@ -891,6 +891,74 @@ type Query implements Node { filter: AttachmentFilter ): AttachmentsConnection + """Reads and enables pagination through a set of `Cbc`.""" + allCbcs( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CbcsConnection + + """Reads and enables pagination through a set of `CbcData`.""" + allCbcData( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcDataFilter + ): CbcDataConnection + """Reads and enables pagination through a set of `CbcProject`.""" allCbcProjects( """Only read the first `n` values of the set.""" @@ -1668,6 +1736,9 @@ type Query implements Node { assessmentDataByRowId(rowId: Int!): AssessmentData assessmentTypeByName(name: String!): AssessmentType attachmentByRowId(rowId: Int!): Attachment + cbcByRowId(rowId: Int!): Cbc + cbcByProjectNumber(projectNumber: Int!): Cbc + cbcDataByRowId(rowId: Int!): CbcData cbcProjectByRowId(rowId: Int!): CbcProject ccbcUserByRowId(rowId: Int!): CcbcUser changeRequestDataByRowId(rowId: Int!): ChangeRequestData @@ -1950,6 +2021,18 @@ type Query implements Node { id: ID! ): Attachment + """Reads a single `Cbc` using its globally unique `ID`.""" + cbc( + """The globally unique `ID` to be used in selecting a single `Cbc`.""" + id: ID! + ): Cbc + + """Reads a single `CbcData` using its globally unique `ID`.""" + cbcData( + """The globally unique `ID` to be used in selecting a single `CbcData`.""" + id: ID! + ): CbcData + """Reads a single `CbcProject` using its globally unique `ID`.""" cbcProject( """ @@ -6092,8 +6175,8 @@ type CcbcUser implements Node { filter: ApplicationPendingChangeRequestFilter ): ApplicationPendingChangeRequestsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6112,22 +6195,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection! + filter: CbcFilter + ): CbcsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6146,22 +6229,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection! + filter: CbcFilter + ): CbcsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6180,22 +6263,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection! + filter: CbcFilter + ): CbcsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6214,22 +6297,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection! + filter: CbcDataFilter + ): CbcDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6248,22 +6331,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection! + filter: CbcDataFilter + ): CbcDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCcbcUserArchivedByAndUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6282,22 +6365,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection! + filter: CbcDataFilter + ): CbcDataConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCreatedByAndUpdatedBy( + ccbcUsersByCcbcUserCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6328,10 +6411,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCreatedByAndArchivedBy( + ccbcUsersByCcbcUserCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6362,10 +6445,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeCreatedByAndCounterId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCcbcUserUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6384,22 +6467,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GaplessCounter`.""" - orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GaplessCounterCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeUpdatedByAndCreatedBy( + ccbcUsersByCcbcUserUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6430,10 +6513,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeUpdatedByAndArchivedBy( + ccbcUsersByCcbcUserArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6464,10 +6547,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `GaplessCounter`.""" - gaplessCountersByIntakeUpdatedByAndCounterId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCcbcUserArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6486,22 +6569,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GaplessCounter`.""" - orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GaplessCounterCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeArchivedByAndCreatedBy( + ccbcUsersByIntakeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6532,10 +6615,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 @@ -6566,10 +6649,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 @@ -6600,10 +6683,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: GaplessCounterFilter - ): CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection! + ): CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationCreatedByAndIntakeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6622,22 +6705,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCreatedByAndUpdatedBy( + ccbcUsersByIntakeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6668,10 +6751,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeUpdatedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -6690,22 +6773,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationUpdatedByAndIntakeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6724,22 +6807,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationUpdatedByAndCreatedBy( + ccbcUsersByIntakeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6770,10 +6853,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `GaplessCounter`.""" + gaplessCountersByIntakeArchivedByAndCounterId( """Only read the first `n` values of the set.""" first: Int @@ -6792,22 +6875,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GaplessCounter`.""" + orderBy: [GaplessCountersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: GaplessCounterCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection! + filter: GaplessCounterFilter + ): CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection! """Reads and enables pagination through a set of `Intake`.""" - intakesByApplicationArchivedByAndIntakeId( + intakesByApplicationCreatedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -6838,10 +6921,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: IntakeFilter - ): CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection! + ): CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationArchivedByAndCreatedBy( + 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 @@ -6872,10 +6989,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection! + ): 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! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationArchivedByAndUpdatedBy( + ccbcUsersByApplicationUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -6906,10 +7057,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -6928,22 +7079,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusCreatedByAndStatus( + """Reads and enables pagination through a set of `Intake`.""" + intakesByApplicationArchivedByAndIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -6962,22 +7113,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 + ): CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusCreatedByAndArchivedBy( + ccbcUsersByApplicationArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7008,10 +7159,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusCreatedByAndUpdatedBy( + ccbcUsersByApplicationArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7042,10 +7193,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusArchivedByAndApplicationId( + applicationsByApplicationStatusCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7076,10 +7227,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusArchivedByAndStatus( + applicationStatusTypesByApplicationStatusCreatedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -7110,10 +7261,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection! + ): CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusArchivedByAndCreatedBy( + ccbcUsersByApplicationStatusCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7144,10 +7295,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusArchivedByAndUpdatedBy( + ccbcUsersByApplicationStatusCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7178,10 +7329,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusUpdatedByAndApplicationId( + applicationsByApplicationStatusArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7212,10 +7363,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusUpdatedByAndStatus( + applicationStatusTypesByApplicationStatusArchivedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -7246,10 +7397,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationStatusTypeFilter - ): CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection! + ): CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusUpdatedByAndCreatedBy( + ccbcUsersByApplicationStatusArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7280,10 +7431,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusUpdatedByAndArchivedBy( + ccbcUsersByApplicationStatusArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7314,10 +7465,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentCreatedByAndApplicationId( + applicationsByApplicationStatusUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7348,10 +7499,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentCreatedByAndApplicationStatusId( + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusUpdatedByAndStatus( """Only read the first `n` values of the set.""" first: Int @@ -7370,22 +7521,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatusType`.""" + orderBy: [ApplicationStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationStatusTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection! + filter: ApplicationStatusTypeFilter + ): CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentCreatedByAndUpdatedBy( + ccbcUsersByApplicationStatusUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7416,10 +7567,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentCreatedByAndArchivedBy( + ccbcUsersByApplicationStatusUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7450,10 +7601,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentUpdatedByAndApplicationId( + applicationsByAttachmentCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7484,10 +7635,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentUpdatedByAndApplicationStatusId( + applicationStatusesByAttachmentCreatedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -7518,10 +7669,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationStatusFilter - ): CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection! + ): CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentUpdatedByAndCreatedBy( + ccbcUsersByAttachmentCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7552,10 +7703,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentUpdatedByAndArchivedBy( + ccbcUsersByAttachmentCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7586,10 +7737,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentArchivedByAndApplicationId( + applicationsByAttachmentUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7620,10 +7771,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentArchivedByAndApplicationStatusId( + applicationStatusesByAttachmentUpdatedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -7654,10 +7805,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationStatusFilter - ): CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection! + ): CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentArchivedByAndCreatedBy( + ccbcUsersByAttachmentUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7688,10 +7839,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentArchivedByAndUpdatedBy( + ccbcUsersByAttachmentUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7722,10 +7873,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -7744,22 +7895,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataStatusTypeCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentArchivedByAndApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -7778,22 +7929,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationStatusFilter + ): CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataCreatedByAndArchivedBy( + ccbcUsersByAttachmentArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7824,10 +7975,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataCreatedByAndFormSchemaId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7846,22 +7997,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormFilter - ): CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeId( + formDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -7892,10 +8043,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection! + ): CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataUpdatedByAndCreatedBy( + ccbcUsersByFormDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -7926,10 +8077,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataUpdatedByAndArchivedBy( + ccbcUsersByFormDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -7960,10 +8111,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Form`.""" - formsByFormDataUpdatedByAndFormSchemaId( + formsByFormDataCreatedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -7994,10 +8145,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: FormFilter - ): CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection! + ): CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection! """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeId( + formDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -8028,10 +8179,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: FormDataStatusTypeFilter - ): CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection! + ): CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataArchivedByAndCreatedBy( + ccbcUsersByFormDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8062,10 +8213,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataArchivedByAndUpdatedBy( + ccbcUsersByFormDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8096,10 +8247,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Form`.""" - formsByFormDataArchivedByAndFormSchemaId( + formsByFormDataUpdatedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -8130,10 +8281,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: FormFilter - ): CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection! + ): CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -8152,22 +8303,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 + ): CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystCreatedByAndArchivedBy( + ccbcUsersByFormDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8198,10 +8349,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystUpdatedByAndCreatedBy( + ccbcUsersByFormDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8232,10 +8383,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataArchivedByAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -8254,22 +8405,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: FormCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection! + filter: FormFilter + ): CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystArchivedByAndCreatedBy( + ccbcUsersByAnalystCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8300,10 +8451,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnalystArchivedByAndUpdatedBy( + ccbcUsersByAnalystCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8334,10 +8485,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnalystUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8356,22 +8507,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 - ): CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadCreatedByAndAnalystId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnalystUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8390,22 +8541,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 + ): CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadCreatedByAndUpdatedBy( + ccbcUsersByAnalystArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8436,10 +8587,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadCreatedByAndArchivedBy( + ccbcUsersByAnalystArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8470,10 +8621,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadUpdatedByAndApplicationId( + applicationsByApplicationAnalystLeadCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8504,10 +8655,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadUpdatedByAndAnalystId( + analystsByApplicationAnalystLeadCreatedByAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -8538,10 +8689,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: AnalystFilter - ): CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection! + ): CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadUpdatedByAndCreatedBy( + ccbcUsersByApplicationAnalystLeadCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8572,10 +8723,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadUpdatedByAndArchivedBy( + ccbcUsersByApplicationAnalystLeadCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8606,10 +8757,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnalystLeadArchivedByAndApplicationId( + applicationsByApplicationAnalystLeadUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8640,10 +8791,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadArchivedByAndAnalystId( + analystsByApplicationAnalystLeadUpdatedByAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -8674,10 +8825,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: AnalystFilter - ): CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection! + ): CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadArchivedByAndCreatedBy( + ccbcUsersByApplicationAnalystLeadUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8708,10 +8859,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadArchivedByAndUpdatedBy( + ccbcUsersByApplicationAnalystLeadUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8742,10 +8893,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnalystLeadArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -8764,22 +8915,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 + ): CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadArchivedByAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -8798,22 +8949,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 + ): CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataCreatedByAndArchivedBy( + ccbcUsersByApplicationAnalystLeadArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8844,10 +8995,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnalystLeadArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8866,22 +9017,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 + ): CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataUpdatedByAndCreatedBy( + """Reads and enables pagination through a set of `RfiDataStatusType`.""" + rfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -8900,22 +9051,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 - ): CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection! + filter: RfiDataStatusTypeFilter + ): CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataUpdatedByAndArchivedBy( + ccbcUsersByRfiDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -8946,10 +9097,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `RfiDataStatusType`.""" - rfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByRfiDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -8968,22 +9119,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 + ): CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataArchivedByAndCreatedBy( + """Reads and enables pagination through a set of `RfiDataStatusType`.""" + rfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -9002,22 +9153,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 - ): CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection! + filter: RfiDataStatusTypeFilter + ): CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataArchivedByAndUpdatedBy( + ccbcUsersByRfiDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9048,10 +9199,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByRfiDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9070,22 +9221,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 + ): CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataCreatedByAndAssessmentDataType( + """Reads and enables pagination through a set of `RfiDataStatusType`.""" + rfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -9104,22 +9255,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 - ): CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection! + filter: RfiDataStatusTypeFilter + ): CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataCreatedByAndUpdatedBy( + ccbcUsersByRfiDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9150,10 +9301,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataCreatedByAndArchivedBy( + ccbcUsersByRfiDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9184,10 +9335,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataUpdatedByAndApplicationId( + applicationsByAssessmentDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9218,10 +9369,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataUpdatedByAndAssessmentDataType( + assessmentTypesByAssessmentDataCreatedByAndAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -9252,10 +9403,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection! + ): CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataUpdatedByAndCreatedBy( + ccbcUsersByAssessmentDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9286,10 +9437,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataUpdatedByAndArchivedBy( + ccbcUsersByAssessmentDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9320,10 +9471,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataArchivedByAndApplicationId( + applicationsByAssessmentDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9354,10 +9505,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataArchivedByAndAssessmentDataType( + assessmentTypesByAssessmentDataUpdatedByAndAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -9388,10 +9539,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: AssessmentTypeFilter - ): CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection! + ): CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataArchivedByAndCreatedBy( + ccbcUsersByAssessmentDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9422,10 +9573,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataArchivedByAndUpdatedBy( + ccbcUsersByAssessmentDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9456,10 +9607,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageCreatedByAndApplicationId( + applicationsByAssessmentDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9490,10 +9641,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection! + ): 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`.""" - ccbcUsersByApplicationPackageCreatedByAndUpdatedBy( + ccbcUsersByAssessmentDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9524,10 +9709,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageCreatedByAndArchivedBy( + ccbcUsersByAssessmentDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9558,10 +9743,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageUpdatedByAndApplicationId( + applicationsByApplicationPackageCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9592,10 +9777,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageUpdatedByAndCreatedBy( + ccbcUsersByApplicationPackageCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9626,10 +9811,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageUpdatedByAndArchivedBy( + ccbcUsersByApplicationPackageCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9660,10 +9845,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPackageArchivedByAndApplicationId( + applicationsByApplicationPackageUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9694,10 +9879,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageArchivedByAndCreatedBy( + ccbcUsersByApplicationPackageUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9728,10 +9913,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageArchivedByAndUpdatedBy( + ccbcUsersByApplicationPackageUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9762,10 +9947,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataCreatedByAndApplicationId( + applicationsByApplicationPackageArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9796,10 +9981,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationPackageArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9830,10 +10015,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataCreatedByAndArchivedBy( + ccbcUsersByApplicationPackageArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9864,10 +10049,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataUpdatedByAndApplicationId( + applicationsByConditionalApprovalDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -9898,10 +10083,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataUpdatedByAndCreatedBy( + ccbcUsersByConditionalApprovalDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -9932,10 +10117,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataUpdatedByAndArchivedBy( + ccbcUsersByConditionalApprovalDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -9966,10 +10151,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByConditionalApprovalDataArchivedByAndApplicationId( + applicationsByConditionalApprovalDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10000,10 +10185,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataArchivedByAndCreatedBy( + ccbcUsersByConditionalApprovalDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10034,10 +10219,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataArchivedByAndUpdatedBy( + ccbcUsersByConditionalApprovalDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10068,10 +10253,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByConditionalApprovalDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10090,22 +10275,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 + ): CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataCreatedByAndArchivedBy( + ccbcUsersByConditionalApprovalDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10136,10 +10321,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataUpdatedByAndCreatedBy( + ccbcUsersByConditionalApprovalDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10170,10 +10355,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataUpdatedByAndArchivedBy( + ccbcUsersByGisDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10204,10 +10389,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataArchivedByAndCreatedBy( + ccbcUsersByGisDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10238,10 +10423,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByGisDataArchivedByAndUpdatedBy( + ccbcUsersByGisDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10272,44 +10457,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! + ): CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByGisDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10328,22 +10479,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 + ): CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataCreatedByAndUpdatedBy( + ccbcUsersByGisDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10374,10 +10525,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataCreatedByAndArchivedBy( + ccbcUsersByGisDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10408,10 +10559,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataUpdatedByAndBatchId( + gisDataByApplicationGisDataCreatedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -10442,10 +10593,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection! + ): CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataUpdatedByAndApplicationId( + applicationsByApplicationGisDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10476,10 +10627,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationGisDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10510,10 +10661,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationGisDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10544,10 +10695,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataArchivedByAndBatchId( + gisDataByApplicationGisDataUpdatedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -10578,10 +10729,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: GisDataFilter - ): CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection! + ): CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataArchivedByAndApplicationId( + applicationsByApplicationGisDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -10612,44 +10763,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! + ): CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationGisDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10680,10 +10797,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementCreatedByAndUpdatedBy( + ccbcUsersByApplicationGisDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10714,10 +10831,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementCreatedByAndArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataArchivedByAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -10736,22 +10853,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 `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 - ): CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection! + filter: GisDataFilter + ): CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisDataArchivedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementUpdatedByAndCreatedBy( + ccbcUsersByApplicationGisDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10782,10 +10933,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementUpdatedByAndArchivedBy( + ccbcUsersByApplicationGisDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10816,10 +10967,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementArchivedByAndCreatedBy( + ccbcUsersByAnnouncementCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10850,10 +11001,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAnnouncementArchivedByAndUpdatedBy( + ccbcUsersByAnnouncementCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10884,10 +11035,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementCreatedByAndAnnouncementId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnnouncementUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10906,22 +11057,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 - ): CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAnnouncementUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -10940,22 +11091,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementCreatedByAndUpdatedBy( + ccbcUsersByAnnouncementArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -10986,10 +11137,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementCreatedByAndArchivedBy( + ccbcUsersByAnnouncementArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11020,10 +11171,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementUpdatedByAndAnnouncementId( + announcementsByApplicationAnnouncementCreatedByAndAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -11054,10 +11205,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: AnnouncementFilter - ): CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection! + ): CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementUpdatedByAndApplicationId( + applicationsByApplicationAnnouncementCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11088,10 +11239,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementUpdatedByAndCreatedBy( + ccbcUsersByApplicationAnnouncementCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11122,10 +11273,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementUpdatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncementCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11156,10 +11307,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementArchivedByAndAnnouncementId( + announcementsByApplicationAnnouncementUpdatedByAndAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -11190,10 +11341,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: AnnouncementFilter - ): CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection! + ): CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementArchivedByAndApplicationId( + applicationsByApplicationAnnouncementUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11224,10 +11375,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementArchivedByAndCreatedBy( + ccbcUsersByApplicationAnnouncementUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11258,10 +11409,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementArchivedByAndUpdatedBy( + ccbcUsersByApplicationAnnouncementUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11292,10 +11443,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection! + ): 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`.""" - applicationsByApplicationSowDataCreatedByAndApplicationId( + applicationsByApplicationAnnouncementArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11326,10 +11511,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationAnnouncementArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11360,10 +11545,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataCreatedByAndArchivedBy( + ccbcUsersByApplicationAnnouncementArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11394,10 +11579,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataUpdatedByAndApplicationId( + applicationsByApplicationSowDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11428,10 +11613,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationSowDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11462,10 +11647,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationSowDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11496,10 +11681,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationSowDataArchivedByAndApplicationId( + applicationsByApplicationSowDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11530,10 +11715,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataArchivedByAndCreatedBy( + ccbcUsersByApplicationSowDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11564,10 +11749,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationSowDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11598,10 +11783,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2CreatedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationSowDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -11620,22 +11805,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2CreatedByAndUpdatedBy( + ccbcUsersByApplicationSowDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11666,10 +11851,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2CreatedByAndArchivedBy( + ccbcUsersByApplicationSowDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11700,10 +11885,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2UpdatedByAndSowId( + applicationSowDataBySowTab2CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -11734,10 +11919,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2UpdatedByAndCreatedBy( + ccbcUsersBySowTab2CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11768,10 +11953,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2UpdatedByAndArchivedBy( + ccbcUsersBySowTab2CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11802,10 +11987,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab2ArchivedByAndSowId( + applicationSowDataBySowTab2UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -11836,10 +12021,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2ArchivedByAndCreatedBy( + ccbcUsersBySowTab2UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11870,10 +12055,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2ArchivedByAndUpdatedBy( + ccbcUsersBySowTab2UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -11904,10 +12089,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1CreatedByAndSowId( + applicationSowDataBySowTab2ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -11938,10 +12123,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1CreatedByAndUpdatedBy( + ccbcUsersBySowTab2ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -11972,10 +12157,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1CreatedByAndArchivedBy( + ccbcUsersBySowTab2ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12006,10 +12191,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1UpdatedByAndSowId( + applicationSowDataBySowTab1CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -12040,10 +12225,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1UpdatedByAndCreatedBy( + ccbcUsersBySowTab1CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12074,10 +12259,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1UpdatedByAndArchivedBy( + ccbcUsersBySowTab1CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12108,10 +12293,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab1ArchivedByAndSowId( + applicationSowDataBySowTab1UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -12142,10 +12327,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1ArchivedByAndCreatedBy( + ccbcUsersBySowTab1UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12176,10 +12361,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1ArchivedByAndUpdatedBy( + ccbcUsersBySowTab1UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12210,10 +12395,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab1ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -12232,22 +12417,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataCreatedByAndUpdatedBy( + ccbcUsersBySowTab1ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12278,10 +12463,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataCreatedByAndArchivedBy( + ccbcUsersBySowTab1ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12312,10 +12497,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataUpdatedByAndApplicationId( + applicationsByProjectInformationDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12346,10 +12531,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataUpdatedByAndCreatedBy( + ccbcUsersByProjectInformationDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12380,10 +12565,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataUpdatedByAndArchivedBy( + ccbcUsersByProjectInformationDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12414,10 +12599,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByProjectInformationDataArchivedByAndApplicationId( + applicationsByProjectInformationDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12448,214 +12633,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataArchivedByAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataArchivedByAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7CreatedByAndSowId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7CreatedByAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7CreatedByAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection! - - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7UpdatedByAndSowId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7UpdatedByAndCreatedBy( + ccbcUsersByProjectInformationDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12686,10 +12667,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7UpdatedByAndArchivedBy( + ccbcUsersByProjectInformationDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -12720,10 +12701,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab7ArchivedByAndSowId( + """Reads and enables pagination through a set of `Application`.""" + applicationsByProjectInformationDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -12742,22 +12723,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7ArchivedByAndCreatedBy( + ccbcUsersByProjectInformationDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12788,10 +12769,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7ArchivedByAndUpdatedBy( + ccbcUsersByProjectInformationDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12822,10 +12803,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8CreatedByAndSowId( + applicationSowDataBySowTab7CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -12856,44 +12837,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8CreatedByAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set 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 - ): CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8CreatedByAndArchivedBy( + ccbcUsersBySowTab7CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12924,10 +12871,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7CreatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8UpdatedByAndSowId( + applicationSowDataBySowTab7UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -12958,10 +12939,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8UpdatedByAndCreatedBy( + ccbcUsersBySowTab7UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -12992,10 +12973,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8UpdatedByAndArchivedBy( + ccbcUsersBySowTab7UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13026,10 +13007,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataBySowTab8ArchivedByAndSowId( + applicationSowDataBySowTab7ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13060,10 +13041,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationSowDataFilter - ): CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection! + ): CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8ArchivedByAndCreatedBy( + ccbcUsersBySowTab7ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13094,10 +13075,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8ArchivedByAndUpdatedBy( + ccbcUsersBySowTab7ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13128,10 +13109,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataCreatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8CreatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13150,22 +13131,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataCreatedByAndUpdatedBy( + ccbcUsersBySowTab8CreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13196,10 +13177,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataCreatedByAndArchivedBy( + ccbcUsersBySowTab8CreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13230,10 +13211,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataUpdatedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8UpdatedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13252,22 +13233,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataUpdatedByAndCreatedBy( + ccbcUsersBySowTab8UpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13298,10 +13279,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataUpdatedByAndArchivedBy( + ccbcUsersBySowTab8UpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13332,10 +13313,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByChangeRequestDataArchivedByAndApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataBySowTab8ArchivedByAndSowId( """Only read the first `n` values of the set.""" first: Int @@ -13354,22 +13335,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection! + filter: ApplicationSowDataFilter + ): CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataArchivedByAndCreatedBy( + ccbcUsersBySowTab8ArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13400,10 +13381,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataArchivedByAndUpdatedBy( + ccbcUsersBySowTab8ArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13434,10 +13415,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationId( + applicationsByChangeRequestDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13468,10 +13449,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedBy( + ccbcUsersByChangeRequestDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13502,10 +13483,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedBy( + ccbcUsersByChangeRequestDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13536,10 +13517,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationId( + applicationsByChangeRequestDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13570,10 +13551,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedBy( + ccbcUsersByChangeRequestDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13604,10 +13585,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedBy( + ccbcUsersByChangeRequestDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13638,10 +13619,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationId( + applicationsByChangeRequestDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13672,10 +13653,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedBy( + ccbcUsersByChangeRequestDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13706,10 +13687,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedBy( + ccbcUsersByChangeRequestDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13740,10 +13721,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13774,10 +13755,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13808,10 +13789,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedBy( + ccbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13842,10 +13823,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13876,10 +13857,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -13910,10 +13891,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -13944,10 +13925,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationId( + applicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -13978,10 +13959,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedBy( + ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14012,10 +13993,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14046,10 +14027,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataCreatedByAndApplicationId( + applicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14080,10 +14061,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14114,10 +14095,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataCreatedByAndArchivedBy( + ccbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14148,10 +14129,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataUpdatedByAndApplicationId( + applicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14182,10 +14163,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14216,10 +14197,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14250,10 +14231,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsDataArchivedByAndApplicationId( + applicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14284,10 +14265,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataArchivedByAndCreatedBy( + ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14318,10 +14299,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14352,10 +14333,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataCreatedByAndApplicationId( + applicationsByApplicationClaimsDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14386,10 +14367,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationClaimsDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14420,10 +14401,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedBy( + ccbcUsersByApplicationClaimsDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14454,10 +14435,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataUpdatedByAndApplicationId( + applicationsByApplicationClaimsDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14488,10 +14469,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationClaimsDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14522,10 +14503,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationClaimsDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14556,10 +14537,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationClaimsExcelDataArchivedByAndApplicationId( + applicationsByApplicationClaimsDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14590,10 +14571,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedBy( + ccbcUsersByApplicationClaimsDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14624,10 +14605,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationClaimsDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14658,10 +14639,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataCreatedByAndApplicationId( + applicationsByApplicationClaimsExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14692,10 +14673,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14726,10 +14707,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataCreatedByAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14760,10 +14741,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataUpdatedByAndApplicationId( + applicationsByApplicationClaimsExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14794,10 +14775,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14828,10 +14809,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -14862,10 +14843,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneDataArchivedByAndApplicationId( + applicationsByApplicationClaimsExcelDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14896,10 +14877,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataArchivedByAndCreatedBy( + ccbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14930,10 +14911,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -14964,10 +14945,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataCreatedByAndApplicationId( + applicationsByApplicationMilestoneDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -14998,10 +14979,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15032,10 +15013,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15066,10 +15047,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationId( + applicationsByApplicationMilestoneDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15100,10 +15081,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedBy( + ccbcUsersByApplicationMilestoneDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15134,10 +15115,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneDataUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15168,10 +15149,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationMilestoneExcelDataArchivedByAndApplicationId( + applicationsByApplicationMilestoneDataArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15202,10 +15183,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedBy( + ccbcUsersByApplicationMilestoneDataArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15236,10 +15217,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15270,10 +15251,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCreatedByAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneExcelDataCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15292,22 +15273,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectCreatedByAndArchivedBy( + ccbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15338,10 +15319,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectUpdatedByAndCreatedBy( + ccbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -15372,10 +15353,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectUpdatedByAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -15394,22 +15375,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCbcProjectArchivedByAndCreatedBy( + ccbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -15440,10 +15421,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 @@ -15474,10 +15455,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 @@ -15508,10 +15489,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 @@ -15542,10 +15523,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 @@ -15576,10 +15557,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 @@ -15598,22 +15579,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 @@ -15644,10 +15625,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 @@ -15678,10 +15659,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 @@ -15700,22 +15681,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 @@ -15746,10 +15727,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 @@ -15780,10 +15761,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 @@ -15814,10 +15795,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 @@ -15848,10 +15829,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 @@ -15882,10 +15863,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 @@ -15916,10 +15897,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 @@ -15950,10 +15931,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 @@ -15984,10 +15965,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 @@ -16018,10 +15999,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 @@ -16052,10 +16033,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 @@ -16086,10 +16067,44 @@ 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 `Application`.""" + applicationsByApplicationProjectTypeCreatedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordCreatedByAndUpdatedBy( + ccbcUsersByApplicationProjectTypeCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16120,10 +16135,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordCreatedByAndArchivedBy( + ccbcUsersByApplicationProjectTypeCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16154,10 +16169,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationProjectTypeUpdatedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordUpdatedByAndCreatedBy( + ccbcUsersByApplicationProjectTypeUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16188,10 +16237,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordUpdatedByAndArchivedBy( + ccbcUsersByApplicationProjectTypeUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16222,10 +16271,44 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationProjectTypeArchivedByAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordArchivedByAndCreatedBy( + ccbcUsersByApplicationProjectTypeArchivedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16256,10 +16339,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByEmailRecordArchivedByAndUpdatedBy( + ccbcUsersByApplicationProjectTypeArchivedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16290,10 +16373,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationCreatedByAndApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByEmailRecordCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16312,22 +16395,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 - ): CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationCreatedByAndEmailRecordId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByEmailRecordCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16346,22 +16429,22 @@ type CcbcUser implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection! + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationCreatedByAndUpdatedBy( + ccbcUsersByEmailRecordUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16392,10 +16475,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationCreatedByAndArchivedBy( + ccbcUsersByEmailRecordUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16426,10 +16509,78 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection! + ): 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`.""" - applicationsByNotificationUpdatedByAndApplicationId( + applicationsByNotificationCreatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16460,10 +16611,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationUpdatedByAndEmailRecordId( + emailRecordsByNotificationCreatedByAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -16494,10 +16645,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection! + ): CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationUpdatedByAndCreatedBy( + ccbcUsersByNotificationCreatedByAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16528,10 +16679,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationUpdatedByAndArchivedBy( + ccbcUsersByNotificationCreatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16562,10 +16713,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationArchivedByAndApplicationId( + applicationsByNotificationUpdatedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16596,10 +16747,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection! + ): CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationArchivedByAndEmailRecordId( + emailRecordsByNotificationUpdatedByAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -16630,10 +16781,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: EmailRecordFilter - ): CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection! + ): CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationArchivedByAndCreatedBy( + ccbcUsersByNotificationUpdatedByAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -16664,10 +16815,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationArchivedByAndUpdatedBy( + ccbcUsersByNotificationUpdatedByAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -16698,10 +16849,10 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection! + ): CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationPendingChangeRequestCreatedByAndApplicationId( + applicationsByNotificationArchivedByAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -16732,10 +16883,146 @@ type CcbcUser implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: ApplicationFilter - ): CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection! + ): 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`.""" - ccbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedBy( + 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 @@ -17005,590 +17292,1202 @@ type CcbcUser implements Node { """ filter: CcbcUserFilter ): CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection! -} -"""A connection to a list of `CcbcUser` values.""" -type CcbcUsersConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcCreatedByAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - A list of edges which contains the `CcbcUser` and cursor to aid in pagination. - """ - edges: [CcbcUsersEdge!]! + """Only read the last `n` values of the set.""" + last: Int - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -"""A `CcbcUser` edge in the connection.""" -type CcbcUsersEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""A location in a connection that can be used for resuming pagination.""" -scalar Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -"""Information about pagination in a connection.""" -type PageInfo { - """When paginating forwards, are there more items?""" - hasNextPage: Boolean! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection! - """When paginating backwards, are there more items?""" - hasPreviousPage: Boolean! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcCreatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """When paginating backwards, the cursor to continue.""" - startCursor: Cursor + """Only read the last `n` values of the set.""" + last: Int - """When paginating forwards, the cursor to continue.""" - endCursor: Cursor -} + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int -"""Methods to use when ordering `CcbcUser`.""" -enum CcbcUsersOrderBy { - NATURAL - ID_ASC - ID_DESC - SESSION_SUB_ASC - SESSION_SUB_DESC - GIVEN_NAME_ASC - GIVEN_NAME_DESC - FAMILY_NAME_ASC - FAMILY_NAME_DESC - EMAIL_ADDRESS_ASC - EMAIL_ADDRESS_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - EXTERNAL_ANALYST_ASC - EXTERNAL_ANALYST_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -""" -A condition to be used against `CcbcUser` object types. All fields are tested -for equality and combined with a logical ‘and.’ -""" -input CcbcUserCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `sessionSub` field.""" - sessionSub: String + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `givenName` field.""" - givenName: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for equality with the object’s `familyName` field.""" - familyName: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection! - """Checks for equality with the object’s `emailAddress` field.""" - emailAddress: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcUpdatedByAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for equality with the object’s `externalAnalyst` field.""" - externalAnalyst: Boolean -} + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection! -""" -A filter to be used against `CcbcUser` object types. All fields are combined with a logical ‘and.’ -""" -input CcbcUserFilter { - """Filter by the object’s `rowId` field.""" - rowId: IntFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcUpdatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `sessionSub` field.""" - sessionSub: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `givenName` field.""" - givenName: StringFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `familyName` field.""" - familyName: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `emailAddress` field.""" - emailAddress: StringFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Filter by the object’s `createdBy` field.""" - createdBy: IntFilter + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Filter by the object’s `updatedBy` field.""" - updatedBy: IntFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection! - """Filter by the object’s `updatedAt` field.""" - updatedAt: DatetimeFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcArchivedByAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `archivedBy` field.""" - archivedBy: IntFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `archivedAt` field.""" - archivedAt: DatetimeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `externalAnalyst` field.""" - externalAnalyst: BooleanFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `ccbcUsersByCreatedBy` relation.""" - ccbcUsersByCreatedBy: CcbcUserToManyCcbcUserFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `ccbcUsersByCreatedBy` exist.""" - ccbcUsersByCreatedByExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `ccbcUsersByUpdatedBy` relation.""" - ccbcUsersByUpdatedBy: CcbcUserToManyCcbcUserFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `ccbcUsersByUpdatedBy` exist.""" - ccbcUsersByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection! - """Filter by the object’s `ccbcUsersByArchivedBy` relation.""" - ccbcUsersByArchivedBy: CcbcUserToManyCcbcUserFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcArchivedByAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `ccbcUsersByArchivedBy` exist.""" - ccbcUsersByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `intakesByCreatedBy` relation.""" - intakesByCreatedBy: CcbcUserToManyIntakeFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `intakesByCreatedBy` exist.""" - intakesByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `intakesByUpdatedBy` relation.""" - intakesByUpdatedBy: CcbcUserToManyIntakeFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `intakesByUpdatedBy` exist.""" - intakesByUpdatedByExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `intakesByArchivedBy` relation.""" - intakesByArchivedBy: CcbcUserToManyIntakeFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `intakesByArchivedBy` exist.""" - intakesByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection! - """Filter by the object’s `applicationsByCreatedBy` relation.""" - applicationsByCreatedBy: CcbcUserToManyApplicationFilter + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCreatedByAndCbcId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationsByCreatedBy` exist.""" - applicationsByCreatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationsByUpdatedBy` relation.""" - applicationsByUpdatedBy: CcbcUserToManyApplicationFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationsByUpdatedBy` exist.""" - applicationsByUpdatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationsByArchivedBy` relation.""" - applicationsByArchivedBy: CcbcUserToManyApplicationFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationsByArchivedBy` exist.""" - applicationsByArchivedByExist: Boolean + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationStatusesByCreatedBy` relation.""" - applicationStatusesByCreatedBy: CcbcUserToManyApplicationStatusFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition - """Some related `applicationStatusesByCreatedBy` exist.""" - applicationStatusesByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection! - """Filter by the object’s `applicationStatusesByArchivedBy` relation.""" - applicationStatusesByArchivedBy: CcbcUserToManyApplicationStatusFilter + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCreatedByAndProjectNumber( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationStatusesByArchivedBy` exist.""" - applicationStatusesByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationStatusesByUpdatedBy` relation.""" - applicationStatusesByUpdatedBy: CcbcUserToManyApplicationStatusFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationStatusesByUpdatedBy` exist.""" - applicationStatusesByUpdatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `attachmentsByCreatedBy` relation.""" - attachmentsByCreatedBy: CcbcUserToManyAttachmentFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `attachmentsByCreatedBy` exist.""" - attachmentsByCreatedByExist: Boolean + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `attachmentsByUpdatedBy` relation.""" - attachmentsByUpdatedBy: CcbcUserToManyAttachmentFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition - """Some related `attachmentsByUpdatedBy` exist.""" - attachmentsByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection! - """Filter by the object’s `attachmentsByArchivedBy` relation.""" - attachmentsByArchivedBy: CcbcUserToManyAttachmentFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataCreatedByAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `attachmentsByArchivedBy` exist.""" - attachmentsByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `formDataByCreatedBy` relation.""" - formDataByCreatedBy: CcbcUserToManyFormDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `formDataByCreatedBy` exist.""" - formDataByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `formDataByUpdatedBy` relation.""" - formDataByUpdatedBy: CcbcUserToManyFormDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `formDataByUpdatedBy` exist.""" - formDataByUpdatedByExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `formDataByArchivedBy` relation.""" - formDataByArchivedBy: CcbcUserToManyFormDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `formDataByArchivedBy` exist.""" - formDataByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection! - """Filter by the object’s `analystsByCreatedBy` relation.""" - analystsByCreatedBy: CcbcUserToManyAnalystFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataCreatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `analystsByCreatedBy` exist.""" - analystsByCreatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `analystsByUpdatedBy` relation.""" - analystsByUpdatedBy: CcbcUserToManyAnalystFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `analystsByUpdatedBy` exist.""" - analystsByUpdatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `analystsByArchivedBy` relation.""" - analystsByArchivedBy: CcbcUserToManyAnalystFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `analystsByArchivedBy` exist.""" - analystsByArchivedByExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationAnalystLeadsByCreatedBy` relation.""" - applicationAnalystLeadsByCreatedBy: CcbcUserToManyApplicationAnalystLeadFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `applicationAnalystLeadsByCreatedBy` exist.""" - applicationAnalystLeadsByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection! - """Filter by the object’s `applicationAnalystLeadsByUpdatedBy` relation.""" - applicationAnalystLeadsByUpdatedBy: CcbcUserToManyApplicationAnalystLeadFilter + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataUpdatedByAndCbcId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationAnalystLeadsByUpdatedBy` exist.""" - applicationAnalystLeadsByUpdatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationAnalystLeadsByArchivedBy` relation.""" - applicationAnalystLeadsByArchivedBy: CcbcUserToManyApplicationAnalystLeadFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationAnalystLeadsByArchivedBy` exist.""" - applicationAnalystLeadsByArchivedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `rfiDataByCreatedBy` relation.""" - rfiDataByCreatedBy: CcbcUserToManyRfiDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `rfiDataByCreatedBy` exist.""" - rfiDataByCreatedByExist: Boolean + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `rfiDataByUpdatedBy` relation.""" - rfiDataByUpdatedBy: CcbcUserToManyRfiDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition - """Some related `rfiDataByUpdatedBy` exist.""" - rfiDataByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyConnection! - """Filter by the object’s `rfiDataByArchivedBy` relation.""" - rfiDataByArchivedBy: CcbcUserToManyRfiDataFilter + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataUpdatedByAndProjectNumber( + """Only read the first `n` values of the set.""" + first: Int - """Some related `rfiDataByArchivedBy` exist.""" - rfiDataByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `assessmentDataByCreatedBy` relation.""" - assessmentDataByCreatedBy: CcbcUserToManyAssessmentDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `assessmentDataByCreatedBy` exist.""" - assessmentDataByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `assessmentDataByUpdatedBy` relation.""" - assessmentDataByUpdatedBy: CcbcUserToManyAssessmentDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `assessmentDataByUpdatedBy` exist.""" - assessmentDataByUpdatedByExist: Boolean + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `assessmentDataByArchivedBy` relation.""" - assessmentDataByArchivedBy: CcbcUserToManyAssessmentDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition - """Some related `assessmentDataByArchivedBy` exist.""" - assessmentDataByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection! - """Filter by the object’s `applicationPackagesByCreatedBy` relation.""" - applicationPackagesByCreatedBy: CcbcUserToManyApplicationPackageFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataUpdatedByAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationPackagesByCreatedBy` exist.""" - applicationPackagesByCreatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationPackagesByUpdatedBy` relation.""" - applicationPackagesByUpdatedBy: CcbcUserToManyApplicationPackageFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationPackagesByUpdatedBy` exist.""" - applicationPackagesByUpdatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationPackagesByArchivedBy` relation.""" - applicationPackagesByArchivedBy: CcbcUserToManyApplicationPackageFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationPackagesByArchivedBy` exist.""" - applicationPackagesByArchivedByExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `recordVersionsByCreatedBy` relation.""" - recordVersionsByCreatedBy: CcbcUserToManyRecordVersionFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `recordVersionsByCreatedBy` exist.""" - recordVersionsByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection! - """Filter by the object’s `conditionalApprovalDataByCreatedBy` relation.""" - conditionalApprovalDataByCreatedBy: CcbcUserToManyConditionalApprovalDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataUpdatedByAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `conditionalApprovalDataByCreatedBy` exist.""" - conditionalApprovalDataByCreatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `conditionalApprovalDataByUpdatedBy` relation.""" - conditionalApprovalDataByUpdatedBy: CcbcUserToManyConditionalApprovalDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `conditionalApprovalDataByUpdatedBy` exist.""" - conditionalApprovalDataByUpdatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `conditionalApprovalDataByArchivedBy` relation.""" - conditionalApprovalDataByArchivedBy: CcbcUserToManyConditionalApprovalDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `conditionalApprovalDataByArchivedBy` exist.""" - conditionalApprovalDataByArchivedByExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `gisDataByCreatedBy` relation.""" - gisDataByCreatedBy: CcbcUserToManyGisDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `gisDataByCreatedBy` exist.""" - gisDataByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection! - """Filter by the object’s `gisDataByUpdatedBy` relation.""" - gisDataByUpdatedBy: CcbcUserToManyGisDataFilter + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataArchivedByAndCbcId( + """Only read the first `n` values of the set.""" + first: Int - """Some related `gisDataByUpdatedBy` exist.""" - gisDataByUpdatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `gisDataByArchivedBy` relation.""" - gisDataByArchivedBy: CcbcUserToManyGisDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `gisDataByArchivedBy` exist.""" - gisDataByArchivedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `applicationGisDataByCreatedBy` relation.""" - applicationGisDataByCreatedBy: CcbcUserToManyApplicationGisDataFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationGisDataByCreatedBy` exist.""" - applicationGisDataByCreatedByExist: Boolean + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationGisDataByUpdatedBy` relation.""" - applicationGisDataByUpdatedBy: CcbcUserToManyApplicationGisDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition - """Some related `applicationGisDataByUpdatedBy` exist.""" - applicationGisDataByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection! - """Filter by the object’s `applicationGisDataByArchivedBy` relation.""" - applicationGisDataByArchivedBy: CcbcUserToManyApplicationGisDataFilter + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataArchivedByAndProjectNumber( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationGisDataByArchivedBy` exist.""" - applicationGisDataByArchivedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `announcementsByCreatedBy` relation.""" - announcementsByCreatedBy: CcbcUserToManyAnnouncementFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `announcementsByCreatedBy` exist.""" - announcementsByCreatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `announcementsByUpdatedBy` relation.""" - announcementsByUpdatedBy: CcbcUserToManyAnnouncementFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `announcementsByUpdatedBy` exist.""" - announcementsByUpdatedByExist: Boolean + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `announcementsByArchivedBy` relation.""" - announcementsByArchivedBy: CcbcUserToManyAnnouncementFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CbcCondition - """Some related `announcementsByArchivedBy` exist.""" - announcementsByArchivedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CbcFilter + ): CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection! - """Filter by the object’s `applicationAnnouncementsByCreatedBy` relation.""" - applicationAnnouncementsByCreatedBy: CcbcUserToManyApplicationAnnouncementFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataArchivedByAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationAnnouncementsByCreatedBy` exist.""" - applicationAnnouncementsByCreatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationAnnouncementsByUpdatedBy` relation.""" - applicationAnnouncementsByUpdatedBy: CcbcUserToManyApplicationAnnouncementFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationAnnouncementsByUpdatedBy` exist.""" - applicationAnnouncementsByUpdatedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """ - Filter by the object’s `applicationAnnouncementsByArchivedBy` relation. - """ - applicationAnnouncementsByArchivedBy: CcbcUserToManyApplicationAnnouncementFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `applicationAnnouncementsByArchivedBy` exist.""" - applicationAnnouncementsByArchivedByExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `applicationSowDataByCreatedBy` relation.""" - applicationSowDataByCreatedBy: CcbcUserToManyApplicationSowDataFilter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `applicationSowDataByCreatedBy` exist.""" - applicationSowDataByCreatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection! - """Filter by the object’s `applicationSowDataByUpdatedBy` relation.""" - applicationSowDataByUpdatedBy: CcbcUserToManyApplicationSowDataFilter + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataArchivedByAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Some related `applicationSowDataByUpdatedBy` exist.""" - applicationSowDataByUpdatedByExist: Boolean + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `applicationSowDataByArchivedBy` relation.""" - applicationSowDataByArchivedBy: CcbcUserToManyApplicationSowDataFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Some related `applicationSowDataByArchivedBy` exist.""" - applicationSowDataByArchivedByExist: Boolean + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `sowTab2SByCreatedBy` relation.""" - sowTab2SByCreatedBy: CcbcUserToManySowTab2Filter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Some related `sowTab2SByCreatedBy` exist.""" - sowTab2SByCreatedByExist: Boolean + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Filter by the object’s `sowTab2SByUpdatedBy` relation.""" - sowTab2SByUpdatedBy: CcbcUserToManySowTab2Filter + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Some related `sowTab2SByUpdatedBy` exist.""" - sowTab2SByUpdatedByExist: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection! +} - """Filter by the object’s `sowTab2SByArchivedBy` relation.""" - sowTab2SByArchivedBy: CcbcUserToManySowTab2Filter +"""A connection to a list of `CcbcUser` values.""" +type CcbcUsersConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Some related `sowTab2SByArchivedBy` exist.""" - sowTab2SByArchivedByExist: Boolean + """ + A list of edges which contains the `CcbcUser` and cursor to aid in pagination. + """ + edges: [CcbcUsersEdge!]! - """Filter by the object’s `sowTab1SByCreatedBy` relation.""" - sowTab1SByCreatedBy: CcbcUserToManySowTab1Filter + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Some related `sowTab1SByCreatedBy` exist.""" - sowTab1SByCreatedByExist: Boolean + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """Filter by the object’s `sowTab1SByUpdatedBy` relation.""" - sowTab1SByUpdatedBy: CcbcUserToManySowTab1Filter +"""A `CcbcUser` edge in the connection.""" +type CcbcUsersEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Some related `sowTab1SByUpdatedBy` exist.""" - sowTab1SByUpdatedByExist: Boolean + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser +} - """Filter by the object’s `sowTab1SByArchivedBy` relation.""" - sowTab1SByArchivedBy: CcbcUserToManySowTab1Filter +"""A location in a connection that can be used for resuming pagination.""" +scalar Cursor - """Some related `sowTab1SByArchivedBy` exist.""" - sowTab1SByArchivedByExist: Boolean +"""Information about pagination in a connection.""" +type PageInfo { + """When paginating forwards, are there more items?""" + hasNextPage: Boolean! - """Filter by the object’s `projectInformationDataByCreatedBy` relation.""" - projectInformationDataByCreatedBy: CcbcUserToManyProjectInformationDataFilter + """When paginating backwards, are there more items?""" + hasPreviousPage: Boolean! - """Some related `projectInformationDataByCreatedBy` exist.""" - projectInformationDataByCreatedByExist: Boolean + """When paginating backwards, the cursor to continue.""" + startCursor: Cursor - """Filter by the object’s `projectInformationDataByUpdatedBy` relation.""" - projectInformationDataByUpdatedBy: CcbcUserToManyProjectInformationDataFilter + """When paginating forwards, the cursor to continue.""" + endCursor: Cursor +} - """Some related `projectInformationDataByUpdatedBy` exist.""" - projectInformationDataByUpdatedByExist: Boolean +"""Methods to use when ordering `CcbcUser`.""" +enum CcbcUsersOrderBy { + NATURAL + ID_ASC + ID_DESC + SESSION_SUB_ASC + SESSION_SUB_DESC + GIVEN_NAME_ASC + GIVEN_NAME_DESC + FAMILY_NAME_ASC + FAMILY_NAME_DESC + EMAIL_ADDRESS_ASC + EMAIL_ADDRESS_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + EXTERNAL_ANALYST_ASC + EXTERNAL_ANALYST_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Filter by the object’s `projectInformationDataByArchivedBy` relation.""" - projectInformationDataByArchivedBy: CcbcUserToManyProjectInformationDataFilter +""" +A condition to be used against `CcbcUser` object types. All fields are tested +for equality and combined with a logical ‘and.’ +""" +input CcbcUserCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Some related `projectInformationDataByArchivedBy` exist.""" - projectInformationDataByArchivedByExist: Boolean + """Checks for equality with the object’s `sessionSub` field.""" + sessionSub: String - """Filter by the object’s `sowTab7SByCreatedBy` relation.""" - sowTab7SByCreatedBy: CcbcUserToManySowTab7Filter + """Checks for equality with the object’s `givenName` field.""" + givenName: String - """Some related `sowTab7SByCreatedBy` exist.""" - sowTab7SByCreatedByExist: Boolean + """Checks for equality with the object’s `familyName` field.""" + familyName: String - """Filter by the object’s `sowTab7SByUpdatedBy` relation.""" - sowTab7SByUpdatedBy: CcbcUserToManySowTab7Filter + """Checks for equality with the object’s `emailAddress` field.""" + emailAddress: String - """Some related `sowTab7SByUpdatedBy` exist.""" - sowTab7SByUpdatedByExist: Boolean + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """Filter by the object’s `sowTab7SByArchivedBy` relation.""" - sowTab7SByArchivedBy: CcbcUserToManySowTab7Filter + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Some related `sowTab7SByArchivedBy` exist.""" - sowTab7SByArchivedByExist: Boolean + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Filter by the object’s `sowTab8SByCreatedBy` relation.""" - sowTab8SByCreatedBy: CcbcUserToManySowTab8Filter + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Some related `sowTab8SByCreatedBy` exist.""" - sowTab8SByCreatedByExist: Boolean + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Filter by the object’s `sowTab8SByUpdatedBy` relation.""" - sowTab8SByUpdatedBy: CcbcUserToManySowTab8Filter + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime - """Some related `sowTab8SByUpdatedBy` exist.""" - sowTab8SByUpdatedByExist: Boolean + """Checks for equality with the object’s `externalAnalyst` field.""" + externalAnalyst: Boolean +} - """Filter by the object’s `sowTab8SByArchivedBy` relation.""" - sowTab8SByArchivedBy: CcbcUserToManySowTab8Filter +""" +A filter to be used against `CcbcUser` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter - """Some related `sowTab8SByArchivedBy` exist.""" - sowTab8SByArchivedByExist: Boolean + """Filter by the object’s `sessionSub` field.""" + sessionSub: StringFilter - """Filter by the object’s `changeRequestDataByCreatedBy` relation.""" - changeRequestDataByCreatedBy: CcbcUserToManyChangeRequestDataFilter + """Filter by the object’s `givenName` field.""" + givenName: StringFilter - """Some related `changeRequestDataByCreatedBy` exist.""" - changeRequestDataByCreatedByExist: Boolean + """Filter by the object’s `familyName` field.""" + familyName: StringFilter - """Filter by the object’s `changeRequestDataByUpdatedBy` relation.""" - changeRequestDataByUpdatedBy: CcbcUserToManyChangeRequestDataFilter + """Filter by the object’s `emailAddress` field.""" + emailAddress: StringFilter - """Some related `changeRequestDataByUpdatedBy` exist.""" - changeRequestDataByUpdatedByExist: Boolean + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter - """Filter by the object’s `changeRequestDataByArchivedBy` relation.""" - changeRequestDataByArchivedBy: CcbcUserToManyChangeRequestDataFilter + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """Some related `changeRequestDataByArchivedBy` exist.""" - changeRequestDataByArchivedByExist: Boolean + """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 `externalAnalyst` field.""" + externalAnalyst: BooleanFilter + + """Filter by the object’s `ccbcUsersByCreatedBy` relation.""" + ccbcUsersByCreatedBy: CcbcUserToManyCcbcUserFilter + + """Some related `ccbcUsersByCreatedBy` exist.""" + ccbcUsersByCreatedByExist: Boolean + + """Filter by the object’s `ccbcUsersByUpdatedBy` relation.""" + ccbcUsersByUpdatedBy: CcbcUserToManyCcbcUserFilter + + """Some related `ccbcUsersByUpdatedBy` exist.""" + ccbcUsersByUpdatedByExist: Boolean + + """Filter by the object’s `ccbcUsersByArchivedBy` relation.""" + ccbcUsersByArchivedBy: CcbcUserToManyCcbcUserFilter + + """Some related `ccbcUsersByArchivedBy` exist.""" + ccbcUsersByArchivedByExist: Boolean + + """Filter by the object’s `intakesByCreatedBy` relation.""" + intakesByCreatedBy: CcbcUserToManyIntakeFilter + + """Some related `intakesByCreatedBy` exist.""" + intakesByCreatedByExist: Boolean + + """Filter by the object’s `intakesByUpdatedBy` relation.""" + intakesByUpdatedBy: CcbcUserToManyIntakeFilter + + """Some related `intakesByUpdatedBy` exist.""" + intakesByUpdatedByExist: Boolean + + """Filter by the object’s `intakesByArchivedBy` relation.""" + intakesByArchivedBy: CcbcUserToManyIntakeFilter + + """Some related `intakesByArchivedBy` exist.""" + intakesByArchivedByExist: Boolean + + """Filter by the object’s `applicationsByCreatedBy` relation.""" + applicationsByCreatedBy: CcbcUserToManyApplicationFilter + + """Some related `applicationsByCreatedBy` exist.""" + applicationsByCreatedByExist: Boolean + + """Filter by the object’s `applicationsByUpdatedBy` relation.""" + applicationsByUpdatedBy: CcbcUserToManyApplicationFilter + + """Some related `applicationsByUpdatedBy` exist.""" + applicationsByUpdatedByExist: Boolean + + """Filter by the object’s `applicationsByArchivedBy` relation.""" + applicationsByArchivedBy: CcbcUserToManyApplicationFilter + + """Some related `applicationsByArchivedBy` exist.""" + applicationsByArchivedByExist: Boolean + + """Filter by the object’s `applicationStatusesByCreatedBy` relation.""" + applicationStatusesByCreatedBy: CcbcUserToManyApplicationStatusFilter + + """Some related `applicationStatusesByCreatedBy` exist.""" + applicationStatusesByCreatedByExist: Boolean + + """Filter by the object’s `applicationStatusesByArchivedBy` relation.""" + applicationStatusesByArchivedBy: CcbcUserToManyApplicationStatusFilter + + """Some related `applicationStatusesByArchivedBy` exist.""" + applicationStatusesByArchivedByExist: Boolean + + """Filter by the object’s `applicationStatusesByUpdatedBy` relation.""" + applicationStatusesByUpdatedBy: CcbcUserToManyApplicationStatusFilter + + """Some related `applicationStatusesByUpdatedBy` exist.""" + applicationStatusesByUpdatedByExist: Boolean + + """Filter by the object’s `attachmentsByCreatedBy` relation.""" + attachmentsByCreatedBy: CcbcUserToManyAttachmentFilter + + """Some related `attachmentsByCreatedBy` exist.""" + attachmentsByCreatedByExist: Boolean + + """Filter by the object’s `attachmentsByUpdatedBy` relation.""" + attachmentsByUpdatedBy: CcbcUserToManyAttachmentFilter + + """Some related `attachmentsByUpdatedBy` exist.""" + attachmentsByUpdatedByExist: Boolean + + """Filter by the object’s `attachmentsByArchivedBy` relation.""" + attachmentsByArchivedBy: CcbcUserToManyAttachmentFilter + + """Some related `attachmentsByArchivedBy` exist.""" + attachmentsByArchivedByExist: Boolean + + """Filter by the object’s `formDataByCreatedBy` relation.""" + formDataByCreatedBy: CcbcUserToManyFormDataFilter + + """Some related `formDataByCreatedBy` exist.""" + formDataByCreatedByExist: Boolean + + """Filter by the object’s `formDataByUpdatedBy` relation.""" + formDataByUpdatedBy: CcbcUserToManyFormDataFilter + + """Some related `formDataByUpdatedBy` exist.""" + formDataByUpdatedByExist: Boolean + + """Filter by the object’s `formDataByArchivedBy` relation.""" + formDataByArchivedBy: CcbcUserToManyFormDataFilter + + """Some related `formDataByArchivedBy` exist.""" + formDataByArchivedByExist: Boolean + + """Filter by the object’s `analystsByCreatedBy` relation.""" + analystsByCreatedBy: CcbcUserToManyAnalystFilter + + """Some related `analystsByCreatedBy` exist.""" + analystsByCreatedByExist: Boolean + + """Filter by the object’s `analystsByUpdatedBy` relation.""" + analystsByUpdatedBy: CcbcUserToManyAnalystFilter + + """Some related `analystsByUpdatedBy` exist.""" + analystsByUpdatedByExist: Boolean + + """Filter by the object’s `analystsByArchivedBy` relation.""" + analystsByArchivedBy: CcbcUserToManyAnalystFilter + + """Some related `analystsByArchivedBy` exist.""" + analystsByArchivedByExist: Boolean + + """Filter by the object’s `applicationAnalystLeadsByCreatedBy` relation.""" + applicationAnalystLeadsByCreatedBy: CcbcUserToManyApplicationAnalystLeadFilter + + """Some related `applicationAnalystLeadsByCreatedBy` exist.""" + applicationAnalystLeadsByCreatedByExist: Boolean + + """Filter by the object’s `applicationAnalystLeadsByUpdatedBy` relation.""" + applicationAnalystLeadsByUpdatedBy: CcbcUserToManyApplicationAnalystLeadFilter + + """Some related `applicationAnalystLeadsByUpdatedBy` exist.""" + applicationAnalystLeadsByUpdatedByExist: Boolean + + """Filter by the object’s `applicationAnalystLeadsByArchivedBy` relation.""" + applicationAnalystLeadsByArchivedBy: CcbcUserToManyApplicationAnalystLeadFilter + + """Some related `applicationAnalystLeadsByArchivedBy` exist.""" + applicationAnalystLeadsByArchivedByExist: Boolean + + """Filter by the object’s `rfiDataByCreatedBy` relation.""" + rfiDataByCreatedBy: CcbcUserToManyRfiDataFilter + + """Some related `rfiDataByCreatedBy` exist.""" + rfiDataByCreatedByExist: Boolean + + """Filter by the object’s `rfiDataByUpdatedBy` relation.""" + rfiDataByUpdatedBy: CcbcUserToManyRfiDataFilter + + """Some related `rfiDataByUpdatedBy` exist.""" + rfiDataByUpdatedByExist: Boolean + + """Filter by the object’s `rfiDataByArchivedBy` relation.""" + rfiDataByArchivedBy: CcbcUserToManyRfiDataFilter + + """Some related `rfiDataByArchivedBy` exist.""" + rfiDataByArchivedByExist: Boolean + + """Filter by the object’s `assessmentDataByCreatedBy` relation.""" + assessmentDataByCreatedBy: CcbcUserToManyAssessmentDataFilter + + """Some related `assessmentDataByCreatedBy` exist.""" + assessmentDataByCreatedByExist: Boolean + + """Filter by the object’s `assessmentDataByUpdatedBy` relation.""" + assessmentDataByUpdatedBy: CcbcUserToManyAssessmentDataFilter + + """Some related `assessmentDataByUpdatedBy` exist.""" + assessmentDataByUpdatedByExist: Boolean + + """Filter by the object’s `assessmentDataByArchivedBy` relation.""" + assessmentDataByArchivedBy: CcbcUserToManyAssessmentDataFilter + + """Some related `assessmentDataByArchivedBy` exist.""" + assessmentDataByArchivedByExist: Boolean + + """Filter by the object’s `applicationPackagesByCreatedBy` relation.""" + applicationPackagesByCreatedBy: CcbcUserToManyApplicationPackageFilter + + """Some related `applicationPackagesByCreatedBy` exist.""" + applicationPackagesByCreatedByExist: Boolean + + """Filter by the object’s `applicationPackagesByUpdatedBy` relation.""" + applicationPackagesByUpdatedBy: CcbcUserToManyApplicationPackageFilter + + """Some related `applicationPackagesByUpdatedBy` exist.""" + applicationPackagesByUpdatedByExist: Boolean + + """Filter by the object’s `applicationPackagesByArchivedBy` relation.""" + applicationPackagesByArchivedBy: CcbcUserToManyApplicationPackageFilter + + """Some related `applicationPackagesByArchivedBy` exist.""" + applicationPackagesByArchivedByExist: Boolean + + """Filter by the object’s `recordVersionsByCreatedBy` relation.""" + recordVersionsByCreatedBy: CcbcUserToManyRecordVersionFilter + + """Some related `recordVersionsByCreatedBy` exist.""" + recordVersionsByCreatedByExist: Boolean + + """Filter by the object’s `conditionalApprovalDataByCreatedBy` relation.""" + conditionalApprovalDataByCreatedBy: CcbcUserToManyConditionalApprovalDataFilter + + """Some related `conditionalApprovalDataByCreatedBy` exist.""" + conditionalApprovalDataByCreatedByExist: Boolean + + """Filter by the object’s `conditionalApprovalDataByUpdatedBy` relation.""" + conditionalApprovalDataByUpdatedBy: CcbcUserToManyConditionalApprovalDataFilter + + """Some related `conditionalApprovalDataByUpdatedBy` exist.""" + conditionalApprovalDataByUpdatedByExist: Boolean + + """Filter by the object’s `conditionalApprovalDataByArchivedBy` relation.""" + conditionalApprovalDataByArchivedBy: CcbcUserToManyConditionalApprovalDataFilter + + """Some related `conditionalApprovalDataByArchivedBy` exist.""" + conditionalApprovalDataByArchivedByExist: Boolean + + """Filter by the object’s `gisDataByCreatedBy` relation.""" + gisDataByCreatedBy: CcbcUserToManyGisDataFilter + + """Some related `gisDataByCreatedBy` exist.""" + gisDataByCreatedByExist: Boolean + + """Filter by the object’s `gisDataByUpdatedBy` relation.""" + gisDataByUpdatedBy: CcbcUserToManyGisDataFilter + + """Some related `gisDataByUpdatedBy` exist.""" + gisDataByUpdatedByExist: Boolean + + """Filter by the object’s `gisDataByArchivedBy` relation.""" + gisDataByArchivedBy: CcbcUserToManyGisDataFilter + + """Some related `gisDataByArchivedBy` exist.""" + gisDataByArchivedByExist: Boolean + + """Filter by the object’s `applicationGisDataByCreatedBy` relation.""" + applicationGisDataByCreatedBy: CcbcUserToManyApplicationGisDataFilter + + """Some related `applicationGisDataByCreatedBy` exist.""" + applicationGisDataByCreatedByExist: Boolean + + """Filter by the object’s `applicationGisDataByUpdatedBy` relation.""" + applicationGisDataByUpdatedBy: CcbcUserToManyApplicationGisDataFilter + + """Some related `applicationGisDataByUpdatedBy` exist.""" + applicationGisDataByUpdatedByExist: Boolean + + """Filter by the object’s `applicationGisDataByArchivedBy` relation.""" + applicationGisDataByArchivedBy: CcbcUserToManyApplicationGisDataFilter + + """Some related `applicationGisDataByArchivedBy` exist.""" + applicationGisDataByArchivedByExist: Boolean + + """Filter by the object’s `announcementsByCreatedBy` relation.""" + announcementsByCreatedBy: CcbcUserToManyAnnouncementFilter + + """Some related `announcementsByCreatedBy` exist.""" + announcementsByCreatedByExist: Boolean + + """Filter by the object’s `announcementsByUpdatedBy` relation.""" + announcementsByUpdatedBy: CcbcUserToManyAnnouncementFilter + + """Some related `announcementsByUpdatedBy` exist.""" + announcementsByUpdatedByExist: Boolean + + """Filter by the object’s `announcementsByArchivedBy` relation.""" + announcementsByArchivedBy: CcbcUserToManyAnnouncementFilter + + """Some related `announcementsByArchivedBy` exist.""" + announcementsByArchivedByExist: Boolean + + """Filter by the object’s `applicationAnnouncementsByCreatedBy` relation.""" + applicationAnnouncementsByCreatedBy: CcbcUserToManyApplicationAnnouncementFilter + + """Some related `applicationAnnouncementsByCreatedBy` exist.""" + applicationAnnouncementsByCreatedByExist: Boolean + + """Filter by the object’s `applicationAnnouncementsByUpdatedBy` relation.""" + applicationAnnouncementsByUpdatedBy: CcbcUserToManyApplicationAnnouncementFilter + + """Some related `applicationAnnouncementsByUpdatedBy` exist.""" + applicationAnnouncementsByUpdatedByExist: Boolean + + """ + Filter by the object’s `applicationAnnouncementsByArchivedBy` relation. + """ + applicationAnnouncementsByArchivedBy: CcbcUserToManyApplicationAnnouncementFilter + + """Some related `applicationAnnouncementsByArchivedBy` exist.""" + applicationAnnouncementsByArchivedByExist: Boolean + + """Filter by the object’s `applicationSowDataByCreatedBy` relation.""" + applicationSowDataByCreatedBy: CcbcUserToManyApplicationSowDataFilter + + """Some related `applicationSowDataByCreatedBy` exist.""" + applicationSowDataByCreatedByExist: Boolean + + """Filter by the object’s `applicationSowDataByUpdatedBy` relation.""" + applicationSowDataByUpdatedBy: CcbcUserToManyApplicationSowDataFilter + + """Some related `applicationSowDataByUpdatedBy` exist.""" + applicationSowDataByUpdatedByExist: Boolean + + """Filter by the object’s `applicationSowDataByArchivedBy` relation.""" + applicationSowDataByArchivedBy: CcbcUserToManyApplicationSowDataFilter + + """Some related `applicationSowDataByArchivedBy` exist.""" + applicationSowDataByArchivedByExist: Boolean + + """Filter by the object’s `sowTab2SByCreatedBy` relation.""" + sowTab2SByCreatedBy: CcbcUserToManySowTab2Filter + + """Some related `sowTab2SByCreatedBy` exist.""" + sowTab2SByCreatedByExist: Boolean + + """Filter by the object’s `sowTab2SByUpdatedBy` relation.""" + sowTab2SByUpdatedBy: CcbcUserToManySowTab2Filter + + """Some related `sowTab2SByUpdatedBy` exist.""" + sowTab2SByUpdatedByExist: Boolean + + """Filter by the object’s `sowTab2SByArchivedBy` relation.""" + sowTab2SByArchivedBy: CcbcUserToManySowTab2Filter + + """Some related `sowTab2SByArchivedBy` exist.""" + sowTab2SByArchivedByExist: Boolean + + """Filter by the object’s `sowTab1SByCreatedBy` relation.""" + sowTab1SByCreatedBy: CcbcUserToManySowTab1Filter + + """Some related `sowTab1SByCreatedBy` exist.""" + sowTab1SByCreatedByExist: Boolean + + """Filter by the object’s `sowTab1SByUpdatedBy` relation.""" + sowTab1SByUpdatedBy: CcbcUserToManySowTab1Filter + + """Some related `sowTab1SByUpdatedBy` exist.""" + sowTab1SByUpdatedByExist: Boolean + + """Filter by the object’s `sowTab1SByArchivedBy` relation.""" + sowTab1SByArchivedBy: CcbcUserToManySowTab1Filter + + """Some related `sowTab1SByArchivedBy` exist.""" + sowTab1SByArchivedByExist: Boolean + + """Filter by the object’s `projectInformationDataByCreatedBy` relation.""" + projectInformationDataByCreatedBy: CcbcUserToManyProjectInformationDataFilter + + """Some related `projectInformationDataByCreatedBy` exist.""" + projectInformationDataByCreatedByExist: Boolean + + """Filter by the object’s `projectInformationDataByUpdatedBy` relation.""" + projectInformationDataByUpdatedBy: CcbcUserToManyProjectInformationDataFilter + + """Some related `projectInformationDataByUpdatedBy` exist.""" + projectInformationDataByUpdatedByExist: Boolean + + """Filter by the object’s `projectInformationDataByArchivedBy` relation.""" + projectInformationDataByArchivedBy: CcbcUserToManyProjectInformationDataFilter + + """Some related `projectInformationDataByArchivedBy` exist.""" + projectInformationDataByArchivedByExist: Boolean + + """Filter by the object’s `sowTab7SByCreatedBy` relation.""" + sowTab7SByCreatedBy: CcbcUserToManySowTab7Filter + + """Some related `sowTab7SByCreatedBy` exist.""" + sowTab7SByCreatedByExist: Boolean + + """Filter by the object’s `sowTab7SByUpdatedBy` relation.""" + sowTab7SByUpdatedBy: CcbcUserToManySowTab7Filter + + """Some related `sowTab7SByUpdatedBy` exist.""" + sowTab7SByUpdatedByExist: Boolean + + """Filter by the object’s `sowTab7SByArchivedBy` relation.""" + sowTab7SByArchivedBy: CcbcUserToManySowTab7Filter + + """Some related `sowTab7SByArchivedBy` exist.""" + sowTab7SByArchivedByExist: Boolean + + """Filter by the object’s `sowTab8SByCreatedBy` relation.""" + sowTab8SByCreatedBy: CcbcUserToManySowTab8Filter + + """Some related `sowTab8SByCreatedBy` exist.""" + sowTab8SByCreatedByExist: Boolean + + """Filter by the object’s `sowTab8SByUpdatedBy` relation.""" + sowTab8SByUpdatedBy: CcbcUserToManySowTab8Filter + + """Some related `sowTab8SByUpdatedBy` exist.""" + sowTab8SByUpdatedByExist: Boolean + + """Filter by the object’s `sowTab8SByArchivedBy` relation.""" + sowTab8SByArchivedBy: CcbcUserToManySowTab8Filter + + """Some related `sowTab8SByArchivedBy` exist.""" + sowTab8SByArchivedByExist: Boolean + + """Filter by the object’s `changeRequestDataByCreatedBy` relation.""" + changeRequestDataByCreatedBy: CcbcUserToManyChangeRequestDataFilter + + """Some related `changeRequestDataByCreatedBy` exist.""" + changeRequestDataByCreatedByExist: Boolean + + """Filter by the object’s `changeRequestDataByUpdatedBy` relation.""" + changeRequestDataByUpdatedBy: CcbcUserToManyChangeRequestDataFilter + + """Some related `changeRequestDataByUpdatedBy` exist.""" + changeRequestDataByUpdatedByExist: Boolean + + """Filter by the object’s `changeRequestDataByArchivedBy` relation.""" + changeRequestDataByArchivedBy: CcbcUserToManyChangeRequestDataFilter + + """Some related `changeRequestDataByArchivedBy` exist.""" + changeRequestDataByArchivedByExist: Boolean """ - Filter by the object’s `applicationCommunityProgressReportDataByCreatedBy` relation. - """ + Filter by the object’s `applicationCommunityProgressReportDataByCreatedBy` relation. + """ applicationCommunityProgressReportDataByCreatedBy: CcbcUserToManyApplicationCommunityProgressReportDataFilter """ @@ -17846,6 +18745,42 @@ input CcbcUserFilter { """Some related `applicationPendingChangeRequestsByArchivedBy` exist.""" applicationPendingChangeRequestsByArchivedByExist: Boolean + """Filter by the object’s `cbcsByCreatedBy` relation.""" + cbcsByCreatedBy: CcbcUserToManyCbcFilter + + """Some related `cbcsByCreatedBy` exist.""" + cbcsByCreatedByExist: Boolean + + """Filter by the object’s `cbcsByUpdatedBy` relation.""" + cbcsByUpdatedBy: CcbcUserToManyCbcFilter + + """Some related `cbcsByUpdatedBy` exist.""" + cbcsByUpdatedByExist: Boolean + + """Filter by the object’s `cbcsByArchivedBy` relation.""" + cbcsByArchivedBy: CcbcUserToManyCbcFilter + + """Some related `cbcsByArchivedBy` exist.""" + cbcsByArchivedByExist: Boolean + + """Filter by the object’s `cbcDataByCreatedBy` relation.""" + cbcDataByCreatedBy: CcbcUserToManyCbcDataFilter + + """Some related `cbcDataByCreatedBy` exist.""" + cbcDataByCreatedByExist: Boolean + + """Filter by the object’s `cbcDataByUpdatedBy` relation.""" + cbcDataByUpdatedBy: CcbcUserToManyCbcDataFilter + + """Some related `cbcDataByUpdatedBy` exist.""" + cbcDataByUpdatedByExist: Boolean + + """Filter by the object’s `cbcDataByArchivedBy` relation.""" + cbcDataByArchivedBy: CcbcUserToManyCbcDataFilter + + """Some related `cbcDataByArchivedBy` exist.""" + cbcDataByArchivedByExist: Boolean + """Filter by the object’s `keycloakJwtsBySub` relation.""" keycloakJwtsBySub: CcbcUserToManyKeycloakJwtFilter @@ -23051,6 +23986,214 @@ input CcbcUserToManyApplicationPendingChangeRequestFilter { none: ApplicationPendingChangeRequestFilter } +""" +A filter to be used against many `Cbc` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcFilter { + """ + Every related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcFilter + + """ + Some related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcFilter + + """ + No related `Cbc` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcFilter +} + +""" +A filter to be used against `Cbc` object types. All fields are combined with a logical ‘and.’ +""" +input CbcFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter + + """Filter by the object’s `projectNumber` field.""" + projectNumber: IntFilter + + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter + + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter + + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter + + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter + + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter + + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter + + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter + + """Filter by the object’s `cbcDataByCbcId` relation.""" + cbcDataByCbcId: CbcToManyCbcDataFilter + + """Some related `cbcDataByCbcId` exist.""" + cbcDataByCbcIdExist: Boolean + + """Filter by the object’s `cbcDataByProjectNumber` relation.""" + cbcDataByProjectNumber: CbcToManyCbcDataFilter + + """Some related `cbcDataByProjectNumber` exist.""" + cbcDataByProjectNumberExist: Boolean + + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter + + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean + + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter + + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [CbcFilter!] + + """Checks for any expressions in this list.""" + or: [CbcFilter!] + + """Negates the expression.""" + not: CbcFilter +} + +""" +A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ +""" +input CbcToManyCbcDataFilter { + """ + Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcDataFilter + + """ + Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcDataFilter + + """ + No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcDataFilter +} + +""" +A filter to be used against `CbcData` object types. All fields are combined with a logical ‘and.’ +""" +input CbcDataFilter { + """Filter by the object’s `rowId` field.""" + rowId: IntFilter + + """Filter by the object’s `cbcId` field.""" + cbcId: IntFilter + + """Filter by the object’s `projectNumber` field.""" + projectNumber: IntFilter + + """Filter by the object’s `jsonData` field.""" + jsonData: JSONFilter + + """Filter by the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: DatetimeFilter + + """Filter by the object’s `createdBy` field.""" + createdBy: IntFilter + + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter + + """Filter by the object’s `updatedBy` field.""" + updatedBy: IntFilter + + """Filter by the object’s `updatedAt` field.""" + updatedAt: DatetimeFilter + + """Filter by the object’s `archivedBy` field.""" + archivedBy: IntFilter + + """Filter by the object’s `archivedAt` field.""" + archivedAt: DatetimeFilter + + """Filter by the object’s `cbcByCbcId` relation.""" + cbcByCbcId: CbcFilter + + """A related `cbcByCbcId` exists.""" + cbcByCbcIdExists: Boolean + + """Filter by the object’s `cbcByProjectNumber` relation.""" + cbcByProjectNumber: CbcFilter + + """A related `cbcByProjectNumber` exists.""" + cbcByProjectNumberExists: Boolean + + """Filter by the object’s `ccbcUserByCreatedBy` relation.""" + ccbcUserByCreatedBy: CcbcUserFilter + + """A related `ccbcUserByCreatedBy` exists.""" + ccbcUserByCreatedByExists: Boolean + + """Filter by the object’s `ccbcUserByUpdatedBy` relation.""" + ccbcUserByUpdatedBy: CcbcUserFilter + + """A related `ccbcUserByUpdatedBy` exists.""" + ccbcUserByUpdatedByExists: Boolean + + """Filter by the object’s `ccbcUserByArchivedBy` relation.""" + ccbcUserByArchivedBy: CcbcUserFilter + + """A related `ccbcUserByArchivedBy` exists.""" + ccbcUserByArchivedByExists: Boolean + + """Checks for all expressions in this list.""" + and: [CbcDataFilter!] + + """Checks for any expressions in this list.""" + or: [CbcDataFilter!] + + """Negates the expression.""" + not: CbcDataFilter +} + +""" +A filter to be used against many `CbcData` object types. All fields are combined with a logical ‘and.’ +""" +input CcbcUserToManyCbcDataFilter { + """ + Every related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + every: CbcDataFilter + + """ + Some related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + some: CbcDataFilter + + """ + No related `CbcData` matches the filter criteria. All fields are combined with a logical ‘and.’ + """ + none: CbcDataFilter +} + """ A filter to be used against many `KeycloakJwt` object types. All fields are combined with a logical ‘and.’ """ @@ -23278,42 +24421,1960 @@ type Intake implements Node { """updated at timestamp""" updatedAt: Datetime! - """archived by user id""" - archivedBy: Int + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """ + The counter_id used by the gapless_counter to generate a gapless intake id + """ + counterId: Int + + """A description of the intake""" + description: String + + """A column to denote whether the intake is visible to the public""" + hidden: Boolean + + """ + A column that stores the code used to access the hidden intake. Only used on intakes that are hidden + """ + hiddenCode: UUID + + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Intake`.""" + ccbcUserByArchivedBy: CcbcUser + + """Reads a single `GaplessCounter` that is related to this `Intake`.""" + gaplessCounterByCounterId: GaplessCounter + + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationsConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationIntakeIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection! +} + +"""Table to hold counter for creating gapless sequences""" +type GaplessCounter implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Primary key for the gapless counter""" + rowId: Int! + + """Primary key for the gapless counter""" + counter: Int! + + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): IntakesConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByIntakeCounterIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection! +} + +"""Methods to use when ordering `Intake`.""" +enum IntakesOrderBy { + NATURAL + ID_ASC + ID_DESC + OPEN_TIMESTAMP_ASC + OPEN_TIMESTAMP_DESC + CLOSE_TIMESTAMP_ASC + CLOSE_TIMESTAMP_DESC + CCBC_INTAKE_NUMBER_ASC + CCBC_INTAKE_NUMBER_DESC + APPLICATION_NUMBER_SEQ_NAME_ASC + APPLICATION_NUMBER_SEQ_NAME_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + COUNTER_ID_ASC + COUNTER_ID_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + HIDDEN_ASC + HIDDEN_DESC + HIDDEN_CODE_ASC + HIDDEN_CODE_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `Intake` object types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input IntakeCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `openTimestamp` field.""" + openTimestamp: Datetime + + """Checks for equality with the object’s `closeTimestamp` field.""" + closeTimestamp: Datetime + + """Checks for equality with the object’s `ccbcIntakeNumber` field.""" + ccbcIntakeNumber: Int + + """ + Checks for equality with the object’s `applicationNumberSeqName` field. + """ + applicationNumberSeqName: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `counterId` field.""" + counterId: Int + + """Checks for equality with the object’s `description` field.""" + description: String + + """Checks for equality with the object’s `hidden` field.""" + hidden: Boolean + + """Checks for equality with the object’s `hiddenCode` field.""" + hiddenCode: UUID +} + +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + """ + edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge!]! + + """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 `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): IntakesConnection! +} + +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + """ + edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge!]! + + """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 `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): IntakesConnection! +} + +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + """ + edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge!]! + + """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 `Intake`.""" +type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Intake`.""" + intakesByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: IntakeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: IntakeFilter + ): IntakesConnection! +} + +"""A connection to a list of `Application` values.""" +type ApplicationsConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application` and cursor to aid in pagination. + """ + edges: [ApplicationsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +Table containing the data associated with the CCBC respondents application +""" +type Application implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Primary key ID for the application""" + rowId: Int! + + """Reference number assigned to the application""" + ccbcNumber: String + + """The owner of the application, identified by its JWT sub""" + owner: String! + + """The intake associated with the application, set when it is submitted""" + intakeId: Int + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `Intake` that is related to this `Application`.""" + intakeByIntakeId: Intake + + """Reads a single `CcbcUser` that is related to this `Application`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Application`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Application`.""" + ccbcUserByArchivedBy: CcbcUser + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationStatusCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! + + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AttachmentCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AttachmentFilter + ): AttachmentsConnection! + + """Reads and enables pagination through a set of `ApplicationFormData`.""" + applicationFormDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationFormData`.""" + orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationFormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFormDataFilter + ): ApplicationFormDataConnection! + + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnalystLeadCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! + + """Reads and enables pagination through a set of `ApplicationRfiData`.""" + applicationRfiDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationRfiData`.""" + orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationRfiDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationRfiDataFilter + ): ApplicationRfiDataConnection! + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! + + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPackageCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! + + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ConditionalApprovalDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! + + """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! + + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnnouncementCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! + + """ + Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. + """ + applicationGisAssessmentHhsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationGisAssessmentHh`.""" + orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisAssessmentHhCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisAssessmentHhFilter + ): ApplicationGisAssessmentHhsConnection! + + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationSowDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! + + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: ProjectInformationDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! + + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: ChangeRequestDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! + + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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! + + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: ApplicationCommunityReportExcelDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! + + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationClaimsDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! + + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: ApplicationClaimsExcelDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! + + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: ApplicationMilestoneDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! + + """ + 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! + + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: ApplicationInternalDescriptionCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! + + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: ApplicationProjectTypeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! + + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! + + """ + 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.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! + + """ + computed column to return space separated list of amendment numbers for a change request + """ + amendmentNumbers: String + + """Computed column to return analyst lead of an application""" + analystLead: String + + """Computed column to return the analyst-visible status of an application""" + analystStatus: String + + """Computed column that returns list of announcements for the application""" + announcements( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AnnouncementFilter + ): AnnouncementsConnection! + + """Computed column that takes the slug to return an assessment form""" + assessmentForm(_assessmentDataType: String!): AssessmentData + + """Computed column to return conditional approval data""" + conditionalApproval: ConditionalApprovalData + + """Computed column to return external status of an application""" + externalStatus: String + + """Computed column to display form_data""" + formData: FormData + + """Computed column to return the GIS assessment household counts""" + gisAssessmentHh: ApplicationGisAssessmentHh + + """Computed column to return last GIS data for an application""" + gisData: ApplicationGisData + + """Computed column to return whether the rfi is open""" + hasRfiOpen: Boolean + + """Computed column that returns list of audit records for application""" + history( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: HistoryItemFilter + ): HistoryItemsConnection! + intakeNumber: Int + internalDescription: String + + """Computed column to display organization name from json data""" + organizationName: String + + """Computed column to return the internal description for an application""" + package: Int + + """Computed column to return project information data""" + projectInformation: ProjectInformationData + + """Computed column to display the project name""" + projectName: String + + """Computed column to return last RFI for an application""" + rfi: RfiData + + """Computed column to return status of an application""" + status: String + + """Computed column to return the order of the status""" + statusOrder: Int + + """ + Computed column to return the status order with the status name appended for sorting and filtering + """ + statusSortFilter: String + zone: Int + + """ + Computed column to get single lowest zone from json data, used for sorting + """ + zones: [Int] + + """Reads and enables pagination through a set of `ApplicationStatusType`.""" + applicationStatusTypesByApplicationStatusApplicationIdAndStatus( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: ApplicationStatusTypeCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationStatusTypeFilter + ): ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationStatusApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByAttachmentApplicationIdAndApplicationStatusId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 - """archived at timestamp""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection! - """ - The counter_id used by the gapless_counter to generate a gapless intake id - """ - counterId: Int + """Reads and enables pagination through a set of `FormData`.""" + formDataByApplicationFormDataApplicationIdAndFormDataId( + """Only read the first `n` values of the set.""" + first: Int - """A description of the intake""" - description: String + """Only read the last `n` values of the set.""" + last: Int - """A column to denote whether the intake is visible to the public""" - hidden: Boolean + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - A column that stores the code used to access the hidden intake. Only used on intakes that are hidden - """ - hiddenCode: UUID + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByCreatedBy: CcbcUser + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByUpdatedBy: CcbcUser + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] - """Reads a single `CcbcUser` that is related to this `Intake`.""" - ccbcUserByArchivedBy: CcbcUser + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: FormDataCondition - """Reads a single `GaplessCounter` that is related to this `Intake`.""" - gaplessCounterByCounterId: GaplessCounter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByApplicationAnalystLeadApplicationIdAndAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -23332,22 +26393,22 @@ type Intake implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AnalystFilter + ): ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndCreatedBy( + ccbcUsersByApplicationAnalystLeadApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -23378,10 +26439,10 @@ type Intake implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndUpdatedBy( + ccbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -23412,10 +26473,10 @@ type Intake implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationIntakeIdAndArchivedBy( + ccbcUsersByApplicationAnalystLeadApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -23446,24 +26507,10 @@ type Intake implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection! -} - -"""Table to hold counter for creating gapless sequences""" -type GaplessCounter implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Primary key for the gapless counter""" - rowId: Int! - - """Primary key for the gapless counter""" - counter: Int! + ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByApplicationRfiDataApplicationIdAndRfiDataId( """Only read the first `n` values of the set.""" first: Int @@ -23482,22 +26529,22 @@ type GaplessCounter 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 `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: RfiDataFilter + ): ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndCreatedBy( + """Reads and enables pagination through a set of `AssessmentType`.""" + assessmentTypesByAssessmentDataApplicationIdAndAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -23516,22 +26563,22 @@ type GaplessCounter implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentType`.""" + orderBy: [AssessmentTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AssessmentTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection! + filter: AssessmentTypeFilter + ): ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndUpdatedBy( + ccbcUsersByAssessmentDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -23562,10 +26609,10 @@ type GaplessCounter implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByIntakeCounterIdAndArchivedBy( + ccbcUsersByAssessmentDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -23596,125 +26643,10 @@ type GaplessCounter implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection! -} - -"""Methods to use when ordering `Intake`.""" -enum IntakesOrderBy { - NATURAL - ID_ASC - ID_DESC - OPEN_TIMESTAMP_ASC - OPEN_TIMESTAMP_DESC - CLOSE_TIMESTAMP_ASC - CLOSE_TIMESTAMP_DESC - CCBC_INTAKE_NUMBER_ASC - CCBC_INTAKE_NUMBER_DESC - APPLICATION_NUMBER_SEQ_NAME_ASC - APPLICATION_NUMBER_SEQ_NAME_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - COUNTER_ID_ASC - COUNTER_ID_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - HIDDEN_ASC - HIDDEN_DESC - HIDDEN_CODE_ASC - HIDDEN_CODE_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `Intake` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input IntakeCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `openTimestamp` field.""" - openTimestamp: Datetime - - """Checks for equality with the object’s `closeTimestamp` field.""" - closeTimestamp: Datetime - - """Checks for equality with the object’s `ccbcIntakeNumber` field.""" - ccbcIntakeNumber: Int - - """ - Checks for equality with the object’s `applicationNumberSeqName` field. - """ - applicationNumberSeqName: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime - - """Checks for equality with the object’s `counterId` field.""" - counterId: Int - - """Checks for equality with the object’s `description` field.""" - description: String - - """Checks for equality with the object’s `hidden` field.""" - hidden: Boolean - - """Checks for equality with the object’s `hiddenCode` field.""" - hiddenCode: UUID -} - -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. - """ - edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge!]! - - """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 `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -23733,48 +26665,22 @@ type GaplessCounterCcbcUsersByIntakeCounterIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. - """ - edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge!]! - - """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 `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPackageApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -23793,48 +26699,22 @@ type GaplessCounterCcbcUsersByIntakeCounterIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. - """ - edges: [GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge!]! - - """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 `Intake`.""" -type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPackageApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -23853,91 +26733,56 @@ type GaplessCounterCcbcUsersByIntakeCounterIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! -} - -"""A connection to a list of `Application` values.""" -type ApplicationsConnection { - """A list of `Application` objects.""" - nodes: [Application]! - - """ - A list of edges which contains the `Application` and cursor to aid in pagination. - """ - edges: [ApplicationsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} - -""" -Table containing the data associated with the CCBC respondents application -""" -type Application implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Primary key ID for the application""" - rowId: Int! - - """Reference number assigned to the application""" - ccbcNumber: String - - """The owner of the application, identified by its JWT sub""" - owner: String! - - """The intake associated with the application, set when it is submitted""" - intakeId: Int - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection! - """updated by user id""" - updatedBy: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationPackageApplicationIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """updated at timestamp""" - updatedAt: Datetime! + """Only read the last `n` values of the set.""" + last: Int - """archived by user id""" - archivedBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """archived at timestamp""" - archivedAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Reads a single `Intake` that is related to this `Application`.""" - intakeByIntakeId: Intake + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Reads a single `CcbcUser` that is related to this `Application`.""" - ccbcUserByCreatedBy: CcbcUser + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Reads a single `CcbcUser` that is related to this `Application`.""" - ccbcUserByUpdatedBy: CcbcUser + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Reads a single `CcbcUser` that is related to this `Application`.""" - ccbcUserByArchivedBy: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -23956,22 +26801,22 @@ type Application 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 `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -23990,22 +26835,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationFormData`.""" - applicationFormDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByConditionalApprovalDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -24024,24 +26869,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationFormData`.""" - orderBy: [ApplicationFormDataOrderBy!] = [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: ApplicationFormDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFormDataFilter - ): ApplicationFormDataConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByApplicationId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByApplicationGisDataApplicationIdAndBatchId( """Only read the first `n` values of the set.""" first: Int @@ -24060,22 +26903,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: GisDataFilter + ): ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationRfiData`.""" - applicationRfiDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24094,22 +26937,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationRfiData`.""" - orderBy: [ApplicationRfiDataOrderBy!] = [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: ApplicationRfiDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationRfiDataFilter - ): ApplicationRfiDataConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24128,22 +26971,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -24162,24 +27005,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByApplicationId( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByApplicationAnnouncementApplicationIdAndAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -24198,22 +27039,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: AnnouncementFilter + ): ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24232,24 +27073,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24268,24 +27107,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationGisAssessmentHh`. - """ - applicationGisAssessmentHhsByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -24304,22 +27141,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisAssessmentHh`.""" - orderBy: [ApplicationGisAssessmentHhsOrderBy!] = [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: ApplicationGisAssessmentHhCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisAssessmentHhFilter - ): ApplicationGisAssessmentHhsConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24338,24 +27175,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24374,22 +27209,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationSowDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -24408,24 +27243,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24444,26 +27277,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24482,22 +27311,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByProjectInformationDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -24516,24 +27345,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24552,24 +27379,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24588,24 +27413,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByChangeRequestDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -24624,24 +27447,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24660,24 +27481,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24696,22 +27515,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Notification`.""" - notificationsByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -24730,24 +27549,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByApplicationId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24766,22 +27583,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """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: ApplicationPendingChangeRequestCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentData`.""" - allAssessments( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24800,25 +27617,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] + """ - A filter to be used in determining which values should be returned by the collection. + A condition to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! - - """ - computed column to return space separated list of amendment numbers for a change request - """ - amendmentNumbers: String - - """Computed column to return analyst lead of an application""" - analystLead: String + condition: CcbcUserCondition - """Computed column to return the analyst-visible status of an application""" - analystStatus: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection! - """Computed column that returns list of announcements for the application""" - announcements( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -24837,35 +27651,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] + """ - A filter to be used in determining which values should be returned by the collection. + A condition to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! - - """Computed column that takes the slug to return an assessment form""" - assessmentForm(_assessmentDataType: String!): AssessmentData - - """Computed column to return conditional approval data""" - conditionalApproval: ConditionalApprovalData - - """Computed column to return external status of an application""" - externalStatus: String - - """Computed column to display form_data""" - formData: FormData - - """Computed column to return the GIS assessment household counts""" - gisAssessmentHh: ApplicationGisAssessmentHh - - """Computed column to return last GIS data for an application""" - gisData: ApplicationGisData + condition: CcbcUserCondition - """Computed column to return whether the rfi is open""" - hasRfiOpen: Boolean + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection! - """Computed column that returns list of audit records for application""" - history( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24884,48 +27685,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] + """ - A filter to be used in determining which values should be returned by the collection. + A condition to be used in determining which values should be returned by the collection. """ - filter: HistoryItemFilter - ): HistoryItemsConnection! - intakeNumber: Int - internalDescription: String - - """Computed column to display organization name from json data""" - organizationName: String - - """Computed column to return the internal description for an application""" - package: Int - - """Computed column to return project information data""" - projectInformation: ProjectInformationData - - """Computed column to display the project name""" - projectName: String - - """Computed column to return last RFI for an application""" - rfi: RfiData - - """Computed column to return status of an application""" - status: String - - """Computed column to return the order of the status""" - statusOrder: Int - - """ - Computed column to return the status order with the status name appended for sorting and filtering - """ - statusSortFilter: String - zone: Int + condition: CcbcUserCondition - """ - Computed column to get single lowest zone from json data, used for sorting - """ - zones: [Int] + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatusType`.""" - applicationStatusTypesByApplicationStatusApplicationIdAndStatus( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -24944,22 +27719,22 @@ type Application 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 - ): ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndCreatedBy( + ccbcUsersByApplicationClaimsDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -24990,10 +27765,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndArchivedBy( + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25024,10 +27799,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusApplicationIdAndUpdatedBy( + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25058,10 +27833,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByAttachmentApplicationIdAndApplicationStatusId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -25080,22 +27855,22 @@ type Application 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 `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndCreatedBy( + ccbcUsersByApplicationMilestoneDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25126,10 +27901,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndUpdatedBy( + ccbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25160,10 +27935,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationIdAndArchivedBy( + ccbcUsersByApplicationMilestoneDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -25194,10 +27969,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByApplicationFormDataApplicationIdAndFormDataId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25216,22 +27991,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection! - """Reads and enables pagination through a set of `Analyst`.""" - analystsByApplicationAnalystLeadApplicationIdAndAnalystId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25250,22 +28025,22 @@ type Application 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 - ): ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndCreatedBy( + ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -25296,10 +28071,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedBy( + ccbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25330,10 +28105,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnalystLeadApplicationIdAndArchivedBy( + ccbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25364,10 +28139,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByApplicationRfiDataApplicationIdAndRfiDataId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -25386,22 +28161,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `AssessmentType`.""" - assessmentTypesByAssessmentDataApplicationIdAndAssessmentDataType( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationProjectTypeApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25420,22 +28195,22 @@ type Application 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 - ): ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection! + filter: CcbcUserFilter + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndCreatedBy( + ccbcUsersByApplicationProjectTypeApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25466,10 +28241,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationProjectTypeApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -25500,10 +28275,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataApplicationIdAndArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByNotificationApplicationIdAndEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -25522,22 +28297,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 - ): ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection! + filter: EmailRecordFilter + ): ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndCreatedBy( + ccbcUsersByNotificationApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25568,10 +28343,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndUpdatedBy( + ccbcUsersByNotificationApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25602,10 +28377,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPackageApplicationIdAndArchivedBy( + ccbcUsersByNotificationApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -25636,10 +28411,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndCreatedBy( + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25670,10 +28445,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25704,10 +28479,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByConditionalApprovalDataApplicationIdAndArchivedBy( + ccbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -25738,10 +28513,86 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection! +} - """Reads and enables pagination through a set of `GisData`.""" - gisDataByApplicationGisDataApplicationIdAndBatchId( +"""A connection to a list of `ApplicationStatus` values.""" +type ApplicationStatusesConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! + + """ + A list of edges which contains the `ApplicationStatus` and cursor to aid in pagination. + """ + edges: [ApplicationStatusesEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ + totalCount: Int! +} + +"""Table containing information about possible application statuses""" +type ApplicationStatus implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Unique ID for the application_status""" + rowId: Int! + + """ID of the application this status belongs to""" + applicationId: Int + + """The status of the application""" + status: String + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """Change reason for analyst status change""" + changeReason: String + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """ + Reads a single `Application` that is related to this `ApplicationStatus`. + """ + applicationByApplicationId: Application + + """ + Reads a single `ApplicationStatusType` that is related to this `ApplicationStatus`. + """ + applicationStatusTypeByStatus: ApplicationStatusType + + """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" + ccbcUserByArchivedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -25760,22 +28611,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByAttachmentApplicationStatusIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -25794,22 +28645,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndUpdatedBy( + ccbcUsersByAttachmentApplicationStatusIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25840,10 +28691,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataApplicationIdAndArchivedBy( + ccbcUsersByAttachmentApplicationStatusIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -25874,10 +28725,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByApplicationAnnouncementApplicationIdAndAnnouncementId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAttachmentApplicationStatusIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -25896,22 +28747,51 @@ type Application 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 - ): ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection! + filter: CcbcUserFilter + ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndCreatedBy( +""" +Table containing the different statuses that can be assigned to an application +""" +type ApplicationStatusType implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Name of and primary key of the status of an application""" + name: String! + + """Description of the status type""" + description: String + + """ + Boolean column used to differentiate internal/external status by indicating whether the status is visible to the applicant or not. + """ + visibleByApplicant: Boolean + + """The logical order in which the status should be displayed.""" + statusOrder: Int! + + """ + Boolean column used to differentiate internal/external status by indicating whether the status is visible to the analyst or not. + """ + visibleByAnalyst: Boolean + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -25930,22 +28810,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 `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 - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationStatusStatusAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -25964,22 +28844,22 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementApplicationIdAndArchivedBy( + ccbcUsersByApplicationStatusStatusAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26010,10 +28890,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection! + ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndCreatedBy( + ccbcUsersByApplicationStatusStatusAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -26044,10 +28924,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection! + ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndUpdatedBy( + ccbcUsersByApplicationStatusStatusAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26078,10 +28958,103 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection! + ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationSowDataApplicationIdAndArchivedBy( +"""Methods to use when ordering `ApplicationStatus`.""" +enum ApplicationStatusesOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + STATUS_ASC + STATUS_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + CHANGE_REASON_ASC + CHANGE_REASON_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ApplicationStatus` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input ApplicationStatusCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `status` field.""" + status: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `changeReason` field.""" + changeReason: String + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime +} + +""" +A connection to a list of `Application` values, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Application` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -26100,22 +29073,133 @@ 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 `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 - ): ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndCreatedBy( +"""Methods to use when ordering `Application`.""" +enum ApplicationsOrderBy { + NATURAL + ID_ASC + ID_DESC + CCBC_NUMBER_ASC + CCBC_NUMBER_DESC + OWNER_ASC + OWNER_DESC + INTAKE_ID_ASC + INTAKE_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + ANALYST_LEAD_ASC + ANALYST_LEAD_DESC + INTAKE_NUMBER_ASC + INTAKE_NUMBER_DESC + ORGANIZATION_NAME_ASC + ORGANIZATION_NAME_DESC + PACKAGE_ASC + PACKAGE_DESC + PROJECT_NAME_ASC + PROJECT_NAME_DESC + STATUS_ASC + STATUS_DESC + STATUS_ORDER_ASC + STATUS_ORDER_DESC + STATUS_SORT_FILTER_ASC + STATUS_SORT_FILTER_DESC + ZONE_ASC + ZONE_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `Application` object types. All fields are tested +for equality and combined with a logical ‘and.’ +""" +input ApplicationCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `ccbcNumber` field.""" + ccbcNumber: String + + """Checks for equality with the object’s `owner` field.""" + owner: String + + """Checks for equality with the object’s `intakeId` field.""" + intakeId: Int + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26134,22 +29218,52 @@ 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 `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 - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -26168,22 +29282,52 @@ 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 `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 - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByProjectInformationDataApplicationIdAndArchivedBy( +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26202,56 +29346,232 @@ 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 `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 - ): ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +"""A connection to a list of `Attachment` values.""" +type AttachmentsConnection { + """A list of `Attachment` objects.""" + nodes: [Attachment]! - """Only read the last `n` values of the set.""" - last: Int + """ + A list of edges which contains the `Attachment` and cursor to aid in pagination. + """ + edges: [AttachmentsEdge!]! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """The count of *all* `Attachment` you could get from the connection.""" + totalCount: Int! +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +"""Table containing information about uploaded attachments""" +type Attachment implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Unique ID for the attachment""" + rowId: Int! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + Universally Unique ID for the attachment, created by the fastapi storage micro-service + """ + file: UUID - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection! + """Description of the attachment""" + description: String - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndUpdatedBy( + """Original uploaded file name""" + fileName: String + + """Original uploaded file type""" + fileType: String + + """Original uploaded file size""" + fileSize: String + + """ + The id of the project (ccbc_public.application.id) that the attachment was uploaded to + """ + applicationId: Int! + + """ + The id of the application_status (ccbc_public.application_status.id) that the attachment references + """ + applicationStatusId: Int + + """created by user id""" + createdBy: Int + + """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 `Attachment`.""" + applicationByApplicationId: Application + + """ + Reads a single `ApplicationStatus` that is related to this `Attachment`. + """ + applicationStatusByApplicationStatusId: ApplicationStatus + + """Reads a single `CcbcUser` that is related to this `Attachment`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Attachment`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Attachment`.""" + ccbcUserByArchivedBy: CcbcUser +} + +"""A `Attachment` edge in the connection.""" +type AttachmentsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Attachment` at the end of the edge.""" + node: Attachment +} + +"""Methods to use when ordering `Attachment`.""" +enum AttachmentsOrderBy { + NATURAL + ID_ASC + ID_DESC + FILE_ASC + FILE_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + FILE_NAME_ASC + FILE_NAME_DESC + FILE_TYPE_ASC + FILE_TYPE_DESC + FILE_SIZE_ASC + FILE_SIZE_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + APPLICATION_STATUS_ID_ASC + APPLICATION_STATUS_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `Attachment` object types. All fields are tested +for equality and combined with a logical ‘and.’ +""" +input AttachmentCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `file` field.""" + file: UUID + + """Checks for equality with the object’s `description` field.""" + description: String + + """Checks for equality with the object’s `fileName` field.""" + fileName: String + + """Checks for equality with the object’s `fileType` field.""" + fileType: String + + """Checks for equality with the object’s `fileSize` field.""" + fileSize: String + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `applicationStatusId` field.""" + applicationStatusId: Int + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +""" +A connection to a list of `Application` values, with data from `Attachment`. +""" +type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +"""A `Application` edge in the connection, with data from `Attachment`.""" +type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application + + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -26270,22 +29590,50 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection! + filter: AttachmentFilter + ): AttachmentsConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByChangeRequestDataApplicationIdAndArchivedBy( +""" +A connection to a list of `CcbcUser` values, with data from `Attachment`. +""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26304,22 +29652,50 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection! + filter: AttachmentFilter + ): AttachmentsConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedBy( +""" +A connection to a list of `CcbcUser` values, with data from `Attachment`. +""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26338,22 +29714,50 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection! + filter: AttachmentFilter + ): AttachmentsConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedBy( +""" +A connection to a list of `CcbcUser` values, with data from `Attachment`. +""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + """ + edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -26372,56 +29776,137 @@ 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 `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection! + filter: AttachmentFilter + ): AttachmentsConnection! +} + +"""A `ApplicationStatus` edge in the connection.""" +type ApplicationStatusesEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus +} + +"""A connection to a list of `ApplicationFormData` values.""" +type ApplicationFormDataConnection { + """A list of `ApplicationFormData` objects.""" + nodes: [ApplicationFormData]! + + """ + A list of edges which contains the `ApplicationFormData` and cursor to aid in pagination. + """ + edges: [ApplicationFormDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationFormData` you could get from the connection. + """ + totalCount: Int! +} + +"""Table to pair an application to form data""" +type ApplicationFormData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """The foreign key of a form""" + formDataId: Int! + + """The foreign key of an application""" + applicationId: Int! + + """ + Reads a single `FormData` that is related to this `ApplicationFormData`. + """ + formDataByFormDataId: FormData + + """ + Reads a single `Application` that is related to this `ApplicationFormData`. + """ + applicationByApplicationId: Application +} + +"""Table to hold applicant form data""" +type FormData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """The unique id of the form data""" + rowId: Int! + + """ + The json form data of the project information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fform_data.json) + """ + jsonData: JSON! + + """Column saving the key of the last edited form page""" + lastEditedPage: String + + """Column referencing the form data status type, defaults to draft""" + formDataStatusTypeId: String + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """archived by user id""" + archivedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """archived at timestamp""" + archivedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Schema for the respective form_data""" + formSchemaId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Column to track analysts reason for changing form data""" + reasonForChange: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Reads a single `FormDataStatusType` that is related to this `FormData`. + """ + formDataStatusTypeByFormDataStatusTypeId: FormDataStatusType - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Reads a single `CcbcUser` that is related to this `FormData`.""" + ccbcUserByCreatedBy: CcbcUser - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Reads a single `CcbcUser` that is related to this `FormData`.""" + ccbcUserByUpdatedBy: CcbcUser - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection! + """Reads a single `CcbcUser` that is related to this `FormData`.""" + ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedBy( + """Reads a single `Form` that is related to this `FormData`.""" + formByFormSchemaId: Form + + """Reads and enables pagination through a set of `ApplicationFormData`.""" + applicationFormDataByFormDataId( """Only read the first `n` values of the set.""" first: Int @@ -26440,22 +29925,25 @@ 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 `ApplicationFormData`.""" + orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationFormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection! + filter: ApplicationFormDataFilter + ): ApplicationFormDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedBy( + """computed column to display whether form_data is editable or not""" + isEditable: Boolean + + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationFormDataFormDataIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -26474,22 +29962,36 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection! + filter: ApplicationFilter + ): FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedBy( +"""The statuses applicable to a form""" +type FormDataStatusType implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """The name of the status type""" + name: String! + + """The description of the status type""" + description: String + + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -26508,22 +30010,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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection! + filter: FormDataFilter + ): FormDataConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndCreatedBy( + ccbcUsersByFormDataFormDataStatusTypeIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26554,10 +30056,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection! + ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndUpdatedBy( + ccbcUsersByFormDataFormDataStatusTypeIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26588,10 +30090,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection! + ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsDataApplicationIdAndArchivedBy( + ccbcUsersByFormDataFormDataStatusTypeIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -26622,10 +30124,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection! + ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedBy( + """Reads and enables pagination through a set of `Form`.""" + formsByFormDataFormDataStatusTypeIdAndFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -26644,124 +30146,149 @@ 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 `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 - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection! + filter: FormFilter + ): FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +"""A connection to a list of `FormData` values.""" +type FormDataConnection { + """A list of `FormData` objects.""" + nodes: [FormData]! - """Only read the last `n` values of the set.""" - last: Int + """ + A list of edges which contains the `FormData` and cursor to aid in pagination. + """ + edges: [FormDataEdge!]! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """The count of *all* `FormData` you could get from the connection.""" + totalCount: Int! +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +"""A `FormData` edge in the connection.""" +type FormDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The `FormData` at the end of the edge.""" + node: FormData +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +"""Methods to use when ordering `FormData`.""" +enum FormDataOrderBy { + NATURAL + ID_ASC + ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + LAST_EDITED_PAGE_ASC + LAST_EDITED_PAGE_DESC + FORM_DATA_STATUS_TYPE_ID_ASC + FORM_DATA_STATUS_TYPE_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + FORM_SCHEMA_ID_ASC + FORM_SCHEMA_ID_DESC + REASON_FOR_CHANGE_ASC + REASON_FOR_CHANGE_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection! +""" +A condition to be used against `FormData` object types. All fields are tested +for equality and combined with a logical ‘and.’ +""" +input FormDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `lastEditedPage` field.""" + lastEditedPage: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `formDataStatusTypeId` field.""" + formDataStatusTypeId: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection! + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `formSchemaId` field.""" + formSchemaId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `reasonForChange` field.""" + reasonForChange: String +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + """ + edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge!]! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection! +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedBy( + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26780,56 +30307,50 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneDataApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int + filter: FormDataFilter + ): FormDataConnection! +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + """ + edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge!]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Information to aid in pagination.""" + pageInfo: PageInfo! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -26848,56 +30369,50 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection! - - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int + filter: FormDataFilter + ): FormDataConnection! +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + """ + edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge!]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Information to aid in pagination.""" + pageInfo: PageInfo! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -26916,56 +30431,65 @@ 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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection! + filter: FormDataFilter + ): FormDataConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +"""A connection to a list of `Form` values, with data from `FormData`.""" +type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection { + """A list of `Form` objects.""" + nodes: [Form]! - """Only read the last `n` values of the set.""" - last: Int + """ + A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. + """ + edges: [FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge!]! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """The count of *all* `Form` you could get from the connection.""" + totalCount: Int! +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +"""Table to hold the json_schema for forms""" +type Form implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Primary key on form""" + rowId: Int! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """The end url for the form data""" + slug: String - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection! + """The JSON schema for the respective form""" + jsonSchema: JSON! + + """Description of the form""" + description: String + + """The type of form being stored""" + formType: String - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedBy( + """Reads a single `FormType` that is related to this `Form`.""" + formTypeByFormType: FormType + + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -26984,22 +30508,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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection! + filter: FormDataFilter + ): FormDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedBy( + """Reads and enables pagination through a set of `FormDataStatusType`.""" + formDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -27018,22 +30542,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 `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 - ): ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection! + filter: FormDataStatusTypeFilter + ): FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndCreatedBy( + ccbcUsersByFormDataFormSchemaIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27064,10 +30588,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection! + ): FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndUpdatedBy( + ccbcUsersByFormDataFormSchemaIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27098,10 +30622,10 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection! + ): FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationProjectTypeApplicationIdAndArchivedBy( + ccbcUsersByFormDataFormSchemaIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -27132,10 +30656,24 @@ type Application implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection! + ): FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection! +} - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByNotificationApplicationIdAndEmailRecordId( +"""Table containing the different types of forms used in the application""" +type FormType implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Primary key and unique identifier of the type of form""" + name: String! + + """Description of the type of form""" + description: String + + """Reads and enables pagination through a set of `Form`.""" + formsByFormType( """Only read the first `n` values of the set.""" first: Int @@ -27154,22 +30692,117 @@ 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 `Form`.""" + orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: FormCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection! + filter: FormFilter + ): FormsConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndCreatedBy( +"""A connection to a list of `Form` values.""" +type FormsConnection { + """A list of `Form` objects.""" + nodes: [Form]! + + """ + A list of edges which contains the `Form` and cursor to aid in pagination. + """ + edges: [FormsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Form` you could get from the connection.""" + totalCount: Int! +} + +"""A `Form` edge in the connection.""" +type FormsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Form` at the end of the edge.""" + node: Form +} + +"""Methods to use when ordering `Form`.""" +enum FormsOrderBy { + NATURAL + ID_ASC + ID_DESC + SLUG_ASC + SLUG_DESC + JSON_SCHEMA_ASC + JSON_SCHEMA_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + FORM_TYPE_ASC + FORM_TYPE_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `Form` object types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input FormCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `slug` field.""" + slug: String + + """Checks for equality with the object’s `jsonSchema` field.""" + jsonSchema: JSON + + """Checks for equality with the object’s `description` field.""" + description: String + + """Checks for equality with the object’s `formType` field.""" + formType: String +} + +""" +A connection to a list of `FormDataStatusType` values, with data from `FormData`. +""" +type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! + + """ + A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. + """ + edges: [FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `FormDataStatusType` you could get from the connection. + """ + totalCount: Int! +} + +""" +A `FormDataStatusType` edge in the connection, with data from `FormData`. +""" +type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType + + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -27188,22 +30821,73 @@ 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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection! + filter: FormDataFilter + ): FormDataConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndUpdatedBy( +"""Methods to use when ordering `FormDataStatusType`.""" +enum FormDataStatusTypesOrderBy { + NATURAL + NAME_ASC + NAME_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `FormDataStatusType` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input FormDataStatusTypeCondition { + """Checks for equality with the object’s `name` field.""" + name: String + + """Checks for equality with the object’s `description` field.""" + description: String +} + +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + """ + edges: [FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27222,22 +30906,50 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection! + filter: FormDataFilter + ): FormDataConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationApplicationIdAndArchivedBy( +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + """ + edges: [FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27256,22 +30968,50 @@ type Application implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection! + filter: FormDataFilter + ): FormDataConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedBy( +""" +A connection to a list of `CcbcUser` values, with data from `FormData`. +""" +type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + """ + edges: [FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -27290,22 +31030,31 @@ 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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection! + filter: FormDataFilter + ): FormDataConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedBy( +"""A `Form` edge in the connection, with data from `FormData`.""" +type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Form` at the end of the edge.""" + node: Form + + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -27324,200 +31073,323 @@ 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 `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: FormDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: FormDataFilter + ): FormDataConnection! +} + +"""Methods to use when ordering `ApplicationFormData`.""" +enum ApplicationFormDataOrderBy { + NATURAL + FORM_DATA_ID_ASC + FORM_DATA_ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ApplicationFormData` object types. All fields +are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationFormDataCondition { + """Checks for equality with the object’s `formDataId` field.""" + formDataId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int +} + +""" +A connection to a list of `Application` values, with data from `ApplicationFormData`. +""" +type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! + + """ + A list of edges which contains the `Application`, info from the `ApplicationFormData`, and the cursor to aid in pagination. + """ + edges: [FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `Application` you could get from the connection.""" + totalCount: Int! +} + +""" +A `Application` edge in the connection, with data from `ApplicationFormData`. +""" +type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application +} + +"""A `ApplicationFormData` edge in the connection.""" +type ApplicationFormDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationFormData` at the end of the edge.""" + node: ApplicationFormData +} + +"""A connection to a list of `ApplicationAnalystLead` values.""" +type ApplicationAnalystLeadsConnection { + """A list of `ApplicationAnalystLead` objects.""" + nodes: [ApplicationAnalystLead]! + + """ + A list of edges which contains the `ApplicationAnalystLead` and cursor to aid in pagination. + """ + edges: [ApplicationAnalystLeadsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ApplicationAnalystLead` you could get from the connection. + """ + totalCount: Int! +} + +"""Table containing the analyst lead for the given application""" +type ApplicationAnalystLead implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Unique ID for the application_analyst_lead""" + rowId: Int! + + """ID of the application this analyst lead belongs to""" + applicationId: Int + + """ID of the analyst this analyst lead belongs to""" + analystId: Int + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """ + Reads a single `Application` that is related to this `ApplicationAnalystLead`. + """ + applicationByApplicationId: Application + + """ + Reads a single `Analyst` that is related to this `ApplicationAnalystLead`. + """ + analystByAnalystId: Analyst + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. + """ + ccbcUserByArchivedBy: CcbcUser +} + +"""A `ApplicationAnalystLead` edge in the connection.""" +type ApplicationAnalystLeadsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationAnalystLead` at the end of the edge.""" + node: ApplicationAnalystLead +} + +"""Methods to use when ordering `ApplicationAnalystLead`.""" +enum ApplicationAnalystLeadsOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + ANALYST_ID_ASC + ANALYST_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection! +""" +A condition to be used against `ApplicationAnalystLead` object types. All fields +are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationAnalystLeadCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `analystId` field.""" + analystId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection! + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } -"""A connection to a list of `ApplicationStatus` values.""" -type ApplicationStatusesConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +"""A connection to a list of `ApplicationRfiData` values.""" +type ApplicationRfiDataConnection { + """A list of `ApplicationRfiData` objects.""" + nodes: [ApplicationRfiData]! """ - A list of edges which contains the `ApplicationStatus` and cursor to aid in pagination. + A list of edges which contains the `ApplicationRfiData` and cursor to aid in pagination. """ - edges: [ApplicationStatusesEdge!]! + edges: [ApplicationRfiDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationStatus` you could get from the connection. + The count of *all* `ApplicationRfiData` you could get from the connection. """ totalCount: Int! } -"""Table containing information about possible application statuses""" -type ApplicationStatus implements Node { +"""Table to pair an application to RFI data""" +type ApplicationRfiData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the application_status""" - rowId: Int! - - """ID of the application this status belongs to""" - applicationId: Int - - """The status of the application""" - status: String - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """Change reason for analyst status change""" - changeReason: String - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime + """The foreign key of a form""" + rfiDataId: Int! - """updated by user id""" - updatedBy: Int + """The foreign key of an application""" + applicationId: Int! - """updated at timestamp""" - updatedAt: Datetime! + """Reads a single `RfiData` that is related to this `ApplicationRfiData`.""" + rfiDataByRfiDataId: RfiData """ - Reads a single `Application` that is related to this `ApplicationStatus`. + Reads a single `Application` that is related to this `ApplicationRfiData`. """ applicationByApplicationId: Application +} +"""Table to hold RFI form data""" +type RfiData implements Node { """ - Reads a single `ApplicationStatusType` that is related to this `ApplicationStatus`. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - applicationStatusTypeByStatus: ApplicationStatusType - - """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" - ccbcUserByArchivedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `ApplicationStatus`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int + id: ID! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """The unique id of the form data""" + rowId: Int! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Reference number assigned to the RFI""" + rfiNumber: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + The json form data of the RFI information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Frfi_data.json) + """ + jsonData: JSON! - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """Column referencing the form data status type, defaults to draft""" + rfiDataStatusTypeId: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AttachmentCondition + """created by user id""" + createdBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AttachmentFilter - ): AttachmentsConnection! + """created at timestamp""" + createdAt: Datetime! - """Reads and enables pagination through a set of `Application`.""" - applicationsByAttachmentApplicationStatusIdAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """updated by user id""" + updatedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """updated at timestamp""" + updatedAt: Datetime! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """archived by user id""" + archivedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """archived at timestamp""" + archivedAt: Datetime - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Reads a single `RfiDataStatusType` that is related to this `RfiData`.""" + rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusType - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """Reads a single `CcbcUser` that is related to this `RfiData`.""" + ccbcUserByCreatedBy: CcbcUser - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition + """Reads a single `CcbcUser` that is related to this `RfiData`.""" + ccbcUserByUpdatedBy: CcbcUser - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection! + """Reads a single `CcbcUser` that is related to this `RfiData`.""" + ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationStatusIdAndCreatedBy( + """Reads and enables pagination through a set of `ApplicationRfiData`.""" + applicationRfiDataByRfiDataId( """Only read the first `n` values of the set.""" first: Int @@ -27536,22 +31408,22 @@ type ApplicationStatus 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 `ApplicationRfiData`.""" + orderBy: [ApplicationRfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationRfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection! + filter: ApplicationRfiDataFilter + ): ApplicationRfiDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationStatusIdAndUpdatedBy( + """Computed column to return all attachement rows for an rfi_data row""" + attachments( """Only read the first `n` values of the set.""" first: Int @@ -27570,22 +31442,14 @@ type ApplicationStatus 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] - - """ - 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 - ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection! + filter: AttachmentFilter + ): AttachmentsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAttachmentApplicationStatusIdAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationRfiDataRfiDataIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -27604,85 +31468,36 @@ type ApplicationStatus 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 - ): ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection! + filter: ApplicationFilter + ): RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection! } -""" -Table containing the different statuses that can be assigned to an application -""" -type ApplicationStatusType implements Node { +"""The statuses applicable to an RFI""" +type RfiDataStatusType implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Name of and primary key of the status of an application""" + """The name of the status type""" name: String! - """Description of the status type""" + """The description of the status type""" description: String - """ - Boolean column used to differentiate internal/external status by indicating whether the status is visible to the applicant or not. - """ - visibleByApplicant: Boolean - - """The logical order in which the status should be displayed.""" - statusOrder: Int! - - """ - Boolean column used to differentiate internal/external status by indicating whether the status is visible to the analyst or not. - """ - visibleByAnalyst: Boolean - - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! - - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationStatusStatusAndApplicationId( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -27701,22 +31516,22 @@ type ApplicationStatusType 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 `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection! + filter: RfiDataFilter + ): RfiDataConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusStatusAndCreatedBy( + ccbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27747,10 +31562,10 @@ type ApplicationStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection! + ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusStatusAndArchivedBy( + ccbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -27781,10 +31596,10 @@ type ApplicationStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection! + ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationStatusStatusAndUpdatedBy( + ccbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -27815,147 +31630,46 @@ type ApplicationStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection! -} - -"""Methods to use when ordering `ApplicationStatus`.""" -enum ApplicationStatusesOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - STATUS_ASC - STATUS_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - CHANGE_REASON_ASC - CHANGE_REASON_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationStatus` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input ApplicationStatusCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `status` field.""" - status: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `changeReason` field.""" - changeReason: String - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `RfiData` values.""" +type RfiDataConnection { + """A list of `RfiData` objects.""" + nodes: [RfiData]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `RfiData` and cursor to aid in pagination. """ - edges: [ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge!]! + edges: [RfiDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `RfiData` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeApplicationsByApplicationStatusStatusAndApplicationIdManyToManyEdge { +"""A `RfiData` edge in the connection.""" +type RfiDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application - - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationStatusCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + """The `RfiData` at the end of the edge.""" + node: RfiData } -"""Methods to use when ordering `Application`.""" -enum ApplicationsOrderBy { +"""Methods to use when ordering `RfiData`.""" +enum RfiDataOrderBy { NATURAL ID_ASC ID_DESC - CCBC_NUMBER_ASC - CCBC_NUMBER_DESC - OWNER_ASC - OWNER_DESC - INTAKE_ID_ASC - INTAKE_ID_DESC + RFI_NUMBER_ASC + RFI_NUMBER_DESC + JSON_DATA_ASC + JSON_DATA_DESC + RFI_DATA_STATUS_TYPE_ID_ASC + RFI_DATA_STATUS_TYPE_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -27966,46 +31680,27 @@ enum ApplicationsOrderBy { UPDATED_AT_DESC ARCHIVED_BY_ASC ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - ANALYST_LEAD_ASC - ANALYST_LEAD_DESC - INTAKE_NUMBER_ASC - INTAKE_NUMBER_DESC - ORGANIZATION_NAME_ASC - ORGANIZATION_NAME_DESC - PACKAGE_ASC - PACKAGE_DESC - PROJECT_NAME_ASC - PROJECT_NAME_DESC - STATUS_ASC - STATUS_DESC - STATUS_ORDER_ASC - STATUS_ORDER_DESC - STATUS_SORT_FILTER_ASC - STATUS_SORT_FILTER_DESC - ZONE_ASC - ZONE_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `Application` object types. All fields are tested -for equality and combined with a logical ‘and.’ +A condition to be used against `RfiData` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationCondition { +input RfiDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `ccbcNumber` field.""" - ccbcNumber: String + """Checks for equality with the object’s `rfiNumber` field.""" + rfiNumber: String - """Checks for equality with the object’s `owner` field.""" - owner: String + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Checks for equality with the object’s `intakeId` field.""" - intakeId: Int + """Checks for equality with the object’s `rfiDataStatusTypeId` field.""" + rfiDataStatusTypeId: String """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -28026,17 +31721,15 @@ input ApplicationCondition { archivedAt: Datetime } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge!]! + edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -28045,18 +31738,16 @@ type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28075,32 +31766,30 @@ type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndCreatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: RfiDataFilter + ): RfiDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge!]! + edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -28109,18 +31798,16 @@ type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToM totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28139,32 +31826,30 @@ type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndArchivedByManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: RfiDataFilter + ): RfiDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge!]! + edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -28173,18 +31858,16 @@ type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -28203,74 +31886,113 @@ type ApplicationStatusTypeCcbcUsersByApplicationStatusStatusAndUpdatedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: RfiDataFilter + ): RfiDataConnection! } -"""A connection to a list of `Attachment` values.""" -type AttachmentsConnection { - """A list of `Attachment` objects.""" - nodes: [Attachment]! +"""Methods to use when ordering `ApplicationRfiData`.""" +enum ApplicationRfiDataOrderBy { + NATURAL + RFI_DATA_ID_ASC + RFI_DATA_ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ApplicationRfiData` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input ApplicationRfiDataCondition { + """Checks for equality with the object’s `rfiDataId` field.""" + rfiDataId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int +} + +""" +A connection to a list of `Application` values, with data from `ApplicationRfiData`. +""" +type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Attachment` and cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. """ - edges: [AttachmentsEdge!]! + edges: [RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Attachment` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""Table containing information about uploaded attachments""" -type Attachment implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! +""" +A `Application` edge in the connection, with data from `ApplicationRfiData`. +""" +type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Unique ID for the attachment""" - rowId: Int! + """The `Application` at the end of the edge.""" + node: Application +} - """ - Universally Unique ID for the attachment, created by the fastapi storage micro-service - """ - file: UUID +"""A `ApplicationRfiData` edge in the connection.""" +type ApplicationRfiDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Description of the attachment""" - description: String + """The `ApplicationRfiData` at the end of the edge.""" + node: ApplicationRfiData +} - """Original uploaded file name""" - fileName: String +"""A connection to a list of `AssessmentData` values.""" +type AssessmentDataConnection { + """A list of `AssessmentData` objects.""" + nodes: [AssessmentData]! - """Original uploaded file type""" - fileType: String + """ + A list of edges which contains the `AssessmentData` and cursor to aid in pagination. + """ + edges: [AssessmentDataEdge!]! - """Original uploaded file size""" - fileSize: String + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `AssessmentData` you could get from the connection.""" + totalCount: Int! +} +type AssessmentData implements Node { """ - The id of the project (ccbc_public.application.id) that the attachment was uploaded to + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ + id: ID! + rowId: Int! applicationId: Int! """ - The id of the application_status (ccbc_public.application_status.id) that the attachment references + The json form data of the assessment form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fassessment_data.json) """ - applicationStatusId: Int + jsonData: JSON! + assessmentDataType: String """created by user id""" createdBy: Int @@ -28290,52 +32012,221 @@ type Attachment implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `Application` that is related to this `Attachment`.""" + """Reads a single `Application` that is related to this `AssessmentData`.""" applicationByApplicationId: Application """ - Reads a single `ApplicationStatus` that is related to this `Attachment`. + Reads a single `AssessmentType` that is related to this `AssessmentData`. """ - applicationStatusByApplicationStatusId: ApplicationStatus + assessmentTypeByAssessmentDataType: AssessmentType - """Reads a single `CcbcUser` that is related to this `Attachment`.""" + """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `Attachment`.""" + """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `Attachment`.""" + """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" ccbcUserByArchivedBy: CcbcUser } -"""A `Attachment` edge in the connection.""" -type AttachmentsEdge { - """A cursor for use in pagination.""" - cursor: Cursor +""" +Table containing the different assessment types that can be assigned to an assessment +""" +type AssessmentType implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `Attachment` at the end of the edge.""" - node: Attachment + """Name of and primary key of the type of an assessment""" + name: String! + + """Description of the assessment type""" + description: String + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! + + """Reads and enables pagination through a set of `Application`.""" + applicationsByAssessmentDataAssessmentDataTypeAndApplicationId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataAssessmentDataTypeAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByAssessmentDataAssessmentDataTypeAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `Attachment`.""" -enum AttachmentsOrderBy { +"""Methods to use when ordering `AssessmentData`.""" +enum AssessmentDataOrderBy { NATURAL ID_ASC ID_DESC - FILE_ASC - FILE_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - FILE_NAME_ASC - FILE_NAME_DESC - FILE_TYPE_ASC - FILE_TYPE_DESC - FILE_SIZE_ASC - FILE_SIZE_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - APPLICATION_STATUS_ID_ASC - APPLICATION_STATUS_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + ASSESSMENT_DATA_TYPE_ASC + ASSESSMENT_DATA_TYPE_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -28353,33 +32244,21 @@ enum AttachmentsOrderBy { } """ -A condition to be used against `Attachment` object types. All fields are tested -for equality and combined with a logical ‘and.’ +A condition to be used against `AssessmentData` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input AttachmentCondition { +input AssessmentDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `file` field.""" - file: UUID - - """Checks for equality with the object’s `description` field.""" - description: String - - """Checks for equality with the object’s `fileName` field.""" - fileName: String - - """Checks for equality with the object’s `fileType` field.""" - fileType: String - - """Checks for equality with the object’s `fileSize` field.""" - fileSize: String - """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `applicationStatusId` field.""" - applicationStatusId: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `assessmentDataType` field.""" + assessmentDataType: String """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -28401,16 +32280,16 @@ input AttachmentCondition { } """ -A connection to a list of `Application` values, with data from `Attachment`. +A connection to a list of `Application` values, with data from `AssessmentData`. """ -type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyConnection { +type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge!]! + edges: [AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -28419,16 +32298,18 @@ type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationI totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `AssessmentData`. +""" +type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -28447,32 +32328,32 @@ type ApplicationStatusApplicationsByAttachmentApplicationStatusIdAndApplicationI """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyConnection { +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyEdge!]! + edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -28481,16 +32362,16 @@ type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyTo totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28509,32 +32390,32 @@ type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyConnection { +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyEdge!]! + edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -28543,16 +32424,16 @@ type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyTo totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28571,32 +32452,32 @@ type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyConnection { +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge!]! + edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -28605,16 +32486,16 @@ type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyT totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -28633,94 +32514,208 @@ type ApplicationStatusCcbcUsersByAttachmentApplicationStatusIdAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A `ApplicationStatus` edge in the connection.""" -type ApplicationStatusesEdge { +"""A `AssessmentData` edge in the connection.""" +type AssessmentDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `AssessmentData` at the end of the edge.""" + node: AssessmentData } -"""A connection to a list of `ApplicationFormData` values.""" -type ApplicationFormDataConnection { - """A list of `ApplicationFormData` objects.""" - nodes: [ApplicationFormData]! +"""A connection to a list of `ApplicationPackage` values.""" +type ApplicationPackagesConnection { + """A list of `ApplicationPackage` objects.""" + nodes: [ApplicationPackage]! """ - A list of edges which contains the `ApplicationFormData` and cursor to aid in pagination. + A list of edges which contains the `ApplicationPackage` and cursor to aid in pagination. """ - edges: [ApplicationFormDataEdge!]! + edges: [ApplicationPackagesEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationFormData` you could get from the connection. + The count of *all* `ApplicationPackage` you could get from the connection. """ totalCount: Int! } -"""Table to pair an application to form data""" -type ApplicationFormData implements Node { +"""Table containing the package the application is assigned to""" +type ApplicationPackage implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The foreign key of a form""" - formDataId: Int! + """Unique ID for the application_package""" + rowId: Int! - """The foreign key of an application""" - applicationId: Int! + """The application_id of the application this record is associated with""" + applicationId: Int + + """The package number the application is assigned to""" + package: Int + + """created by user id""" + createdBy: Int + + """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 `FormData` that is related to this `ApplicationFormData`. + Reads a single `Application` that is related to this `ApplicationPackage`. """ - formDataByFormDataId: FormData + applicationByApplicationId: Application """ - Reads a single `Application` that is related to this `ApplicationFormData`. + Reads a single `CcbcUser` that is related to this `ApplicationPackage`. """ - applicationByApplicationId: Application + 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 } -"""Table to hold applicant form data""" -type FormData implements Node { +"""A `ApplicationPackage` edge in the connection.""" +type ApplicationPackagesEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationPackage` at the end of the edge.""" + node: ApplicationPackage +} + +"""Methods to use when ordering `ApplicationPackage`.""" +enum ApplicationPackagesOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + PACKAGE_ASC + PACKAGE_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ApplicationPackage` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input ApplicationPackageCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `package` field.""" + package: Int + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """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 `ConditionalApprovalData` values.""" +type ConditionalApprovalDataConnection { + """A list of `ConditionalApprovalData` objects.""" + nodes: [ConditionalApprovalData]! + + """ + A list of edges which contains the `ConditionalApprovalData` and cursor to aid in pagination. + """ + edges: [ConditionalApprovalDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ConditionalApprovalData` you could get from the connection. + """ + totalCount: Int! +} + +"""Table to store conditional approval data""" +type ConditionalApprovalData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The unique id of the form data""" + """Unique id for the row""" rowId: Int! + """The foreign key of an application""" + applicationId: Int + """ - The json form data of the project information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fform_data.json) + The json form data of the conditional approval form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fconditional_approval_data.json) """ jsonData: JSON! - """Column saving the key of the last edited form page""" - lastEditedPage: String - - """Column referencing the form data status type, defaults to draft""" - formDataStatusTypeId: String - """created by user id""" createdBy: Int @@ -28739,116 +32734,213 @@ type FormData implements Node { """archived at timestamp""" archivedAt: Datetime - """Schema for the respective form_data""" - formSchemaId: Int - - """Column to track analysts reason for changing form data""" - reasonForChange: String - """ - Reads a single `FormDataStatusType` that is related to this `FormData`. + Reads a single `Application` that is related to this `ConditionalApprovalData`. """ - formDataStatusTypeByFormDataStatusTypeId: FormDataStatusType + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `FormData`.""" + """ + Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `FormData`.""" + """ + Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `FormData`.""" + """ + Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. + """ ccbcUserByArchivedBy: CcbcUser +} - """Reads a single `Form` that is related to this `FormData`.""" - formByFormSchemaId: Form +"""A `ConditionalApprovalData` edge in the connection.""" +type ConditionalApprovalDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Reads and enables pagination through a set of `ApplicationFormData`.""" - applicationFormDataByFormDataId( - """Only read the first `n` values of the set.""" - first: Int + """The `ConditionalApprovalData` at the end of the edge.""" + node: ConditionalApprovalData +} - """Only read the last `n` values of the set.""" - last: Int +"""Methods to use when ordering `ConditionalApprovalData`.""" +enum ConditionalApprovalDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +A condition to be used against `ConditionalApprovalData` object types. All +fields are tested for equality and combined with a logical ‘and.’ +""" +input ConditionalApprovalDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """The method to use when ordering `ApplicationFormData`.""" - orderBy: [ApplicationFormDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationFormDataCondition + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFormDataFilter - ): ApplicationFormDataConnection! + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """computed column to display whether form_data is editable or not""" - isEditable: Boolean + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationFormDataFormDataIdAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +"""A connection to a list of `ApplicationGisData` values.""" +type ApplicationGisDataConnection { + """A list of `ApplicationGisData` objects.""" + nodes: [ApplicationGisData]! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + A list of edges which contains the `ApplicationGisData` and cursor to aid in pagination. + """ + edges: [ApplicationGisDataEdge!]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Information to aid in pagination.""" + pageInfo: PageInfo! - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """ + The count of *all* `ApplicationGisData` you could get from the connection. + """ + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition +type ApplicationGisData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + rowId: Int! + batchId: Int + applicationId: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection! + """ + The data imported from the GIS data Excel file. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fapplication_gis_data.json) + """ + jsonData: JSON! + + """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 `GisData` that is related to this `ApplicationGisData`.""" + gisDataByBatchId: GisData + + """ + Reads a single `Application` that is related to this `ApplicationGisData`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationGisData`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationGisData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationGisData`. + """ + ccbcUserByArchivedBy: CcbcUser } -"""The statuses applicable to a form""" -type FormDataStatusType implements Node { +"""Table containing the uploaded GIS data in JSON format""" +type GisData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The name of the status type""" - name: String! + """Primary key and unique identifier""" + rowId: Int! - """The description of the status type""" - description: String + """ + The data imported from the GIS data Excel file. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fgis_data.json) + """ + jsonData: JSON! - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `CcbcUser` that is related to this `GisData`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `GisData`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `GisData`.""" + ccbcUserByArchivedBy: CcbcUser + + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -28867,22 +32959,22 @@ type FormDataStatusType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormDataStatusTypeIdAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationGisDataBatchIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -28901,22 +32993,22 @@ type FormDataStatusType 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 - ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormDataStatusTypeIdAndUpdatedBy( + ccbcUsersByApplicationGisDataBatchIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28947,10 +33039,10 @@ type FormDataStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection! + ): GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormDataStatusTypeIdAndArchivedBy( + ccbcUsersByApplicationGisDataBatchIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -28981,10 +33073,10 @@ type FormDataStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection! + ): GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormDataFormDataStatusTypeIdAndFormSchemaId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationGisDataBatchIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -29003,58 +33095,32 @@ type FormDataStatusType 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 - ): FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection! -} - -"""A connection to a list of `FormData` values.""" -type FormDataConnection { - """A list of `FormData` objects.""" - nodes: [FormData]! - - """ - A list of edges which contains the `FormData` and cursor to aid in pagination. - """ - edges: [FormDataEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `FormData` you could get from the connection.""" - totalCount: Int! -} - -"""A `FormData` edge in the connection.""" -type FormDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `FormData` at the end of the edge.""" - node: FormData + filter: CcbcUserFilter + ): GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `FormData`.""" -enum FormDataOrderBy { +"""Methods to use when ordering `ApplicationGisData`.""" +enum ApplicationGisDataOrderBy { NATURAL ID_ASC ID_DESC + BATCH_ID_ASC + BATCH_ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC JSON_DATA_ASC JSON_DATA_DESC - LAST_EDITED_PAGE_ASC - LAST_EDITED_PAGE_DESC - FORM_DATA_STATUS_TYPE_ID_ASC - FORM_DATA_STATUS_TYPE_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -29067,30 +33133,26 @@ enum FormDataOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC - FORM_SCHEMA_ID_ASC - FORM_SCHEMA_ID_DESC - REASON_FOR_CHANGE_ASC - REASON_FOR_CHANGE_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `FormData` object types. All fields are tested -for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationGisData` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input FormDataCondition { +input ApplicationGisDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Checks for equality with the object’s `batchId` field.""" + batchId: Int - """Checks for equality with the object’s `lastEditedPage` field.""" - lastEditedPage: String + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Checks for equality with the object’s `formDataStatusTypeId` field.""" - formDataStatusTypeId: String + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -29109,43 +33171,39 @@ input FormDataCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime - - """Checks for equality with the object’s `formSchemaId` field.""" - formSchemaId: Int - - """Checks for equality with the object’s `reasonForChange` field.""" - reasonForChange: String } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge!]! + edges: [GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationGisData`. +""" +type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -29164,32 +33222,32 @@ type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyConnection { +type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge!]! + edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -29198,16 +33256,18 @@ type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyTo totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -29226,32 +33286,32 @@ type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyConnection { +type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge!]! + edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -29260,16 +33320,18 @@ type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyT totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -29288,65 +33350,52 @@ type FormDataStatusTypeCcbcUsersByFormDataFormDataStatusTypeIdAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `Form` values, with data from `FormData`.""" -type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyConnection { - """A list of `Form` objects.""" - nodes: [Form]! +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge!]! + edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Form` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table to hold the json_schema for forms""" -type Form implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Primary key on form""" - rowId: Int! - - """The end url for the form data""" - slug: String - - """The JSON schema for the respective form""" - jsonSchema: JSON! - - """Description of the form""" - description: String - - """The type of form being stored""" - formType: String +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Reads a single `FormType` that is related to this `Form`.""" - formTypeByFormType: FormType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -29365,90 +33414,163 @@ type Form implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! +} - """Reads and enables pagination through a set of `FormDataStatusType`.""" - formDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeId( - """Only read the first `n` values of the set.""" - first: Int +"""A `ApplicationGisData` edge in the connection.""" +type ApplicationGisDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Only read the last `n` values of the set.""" - last: Int + """The `ApplicationGisData` at the end of the edge.""" + node: ApplicationGisData +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +"""A connection to a list of `ApplicationAnnouncement` values.""" +type ApplicationAnnouncementsConnection { + """A list of `ApplicationAnnouncement` objects.""" + nodes: [ApplicationAnnouncement]! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + A list of edges which contains the `ApplicationAnnouncement` and cursor to aid in pagination. + """ + edges: [ApplicationAnnouncementsEdge!]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Information to aid in pagination.""" + pageInfo: PageInfo! - """The method to use when ordering `FormDataStatusType`.""" - orderBy: [FormDataStatusTypesOrderBy!] = [PRIMARY_KEY_ASC] + """ + The count of *all* `ApplicationAnnouncement` you could get from the connection. + """ + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataStatusTypeCondition +"""Table to pair an application to RFI data""" +type ApplicationAnnouncement implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataStatusTypeFilter - ): FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection! + """The foreign key of a form""" + announcementId: Int! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormSchemaIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """The foreign key of an application""" + applicationId: Int! - """Only read the last `n` values of the set.""" - last: Int + """created by user id""" + createdBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """updated by user id""" + updatedBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated at timestamp""" + updatedAt: Datetime! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """archived by user id""" + archivedBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """archived at timestamp""" + archivedAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection! + """Flag to identify either announcement is primary or secondary""" + isPrimary: Boolean - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormSchemaIdAndUpdatedBy( + """ + Column describing the operation (created, updated, deleted) for context on the history page + """ + historyOperation: String + + """ + Reads a single `Announcement` that is related to this `ApplicationAnnouncement`. + """ + announcementByAnnouncementId: Announcement + + """ + Reads a single `Application` that is related to this `ApplicationAnnouncement`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + """ + ccbcUserByCreatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + """ + ccbcUserByArchivedBy: CcbcUser +} + +"""Table to hold the announcement data""" +type Announcement implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """The unique id of the announcement data""" + rowId: Int! + + """List of CCBC number of the projects included in announcement""" + ccbcNumbers: String + + """ + The json form data of the announcement form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fannouncement.json) + """ + jsonData: JSON! + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `CcbcUser` that is related to this `Announcement`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Announcement`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Announcement`.""" + ccbcUserByArchivedBy: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -29467,22 +33589,22 @@ type Form implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByFormDataFormSchemaIdAndArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByApplicationAnnouncementAnnouncementIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -29501,36 +33623,22 @@ type Form 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 - ): FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection! -} - -"""Table containing the different types of forms used in the application""" -type FormType implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Primary key and unique identifier of the type of form""" - name: String! - - """Description of the type of form""" - description: String + filter: ApplicationFilter + ): AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection! - """Reads and enables pagination through a set of `Form`.""" - formsByFormType( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -29546,120 +33654,59 @@ type FormType implements Node { """Read all values in the set before (above) this cursor.""" before: Cursor - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Form`.""" - orderBy: [FormsOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormFilter - ): FormsConnection! -} - -"""A connection to a list of `Form` values.""" -type FormsConnection { - """A list of `Form` objects.""" - nodes: [Form]! - - """ - A list of edges which contains the `Form` and cursor to aid in pagination. - """ - edges: [FormsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Form` you could get from the connection.""" - totalCount: Int! -} - -"""A `Form` edge in the connection.""" -type FormsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Form` at the end of the edge.""" - node: Form -} - -"""Methods to use when ordering `Form`.""" -enum FormsOrderBy { - NATURAL - ID_ASC - ID_DESC - SLUG_ASC - SLUG_DESC - JSON_SCHEMA_ASC - JSON_SCHEMA_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - FORM_TYPE_ASC - FORM_TYPE_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -""" -A condition to be used against `Form` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input FormCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `slug` field.""" - slug: String + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for equality with the object’s `jsonSchema` field.""" - jsonSchema: JSON + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection! - """Checks for equality with the object’s `description` field.""" - description: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `formType` field.""" - formType: String -} + """Only read the last `n` values of the set.""" + last: Int -""" -A connection to a list of `FormDataStatusType` values, with data from `FormData`. -""" -type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. - """ - edges: [FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge!]! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - The count of *all* `FormDataStatusType` you could get from the connection. - """ - totalCount: Int! -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -""" -A `FormDataStatusType` edge in the connection, with data from `FormData`. -""" -type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection! - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -29678,117 +33725,151 @@ type FormFormDataStatusTypesByFormDataFormSchemaIdAndFormDataStatusTypeIdManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: CcbcUserFilter + ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `FormDataStatusType`.""" -enum FormDataStatusTypesOrderBy { +"""Methods to use when ordering `ApplicationAnnouncement`.""" +enum ApplicationAnnouncementsOrderBy { NATURAL - NAME_ASC - NAME_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC + ANNOUNCEMENT_ID_ASC + ANNOUNCEMENT_ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + IS_PRIMARY_ASC + IS_PRIMARY_DESC + HISTORY_OPERATION_ASC + HISTORY_OPERATION_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `FormDataStatusType` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationAnnouncement` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -input FormDataStatusTypeCondition { - """Checks for equality with the object’s `name` field.""" - name: String +input ApplicationAnnouncementCondition { + """Checks for equality with the object’s `announcementId` field.""" + announcementId: Int - """Checks for equality with the object’s `description` field.""" - description: String + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `isPrimary` field.""" + isPrimary: Boolean + + """Checks for equality with the object’s `historyOperation` field.""" + historyOperation: String } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge!]! + edges: [AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormCcbcUsersByFormDataFormSchemaIdAndCreatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """created by user id""" + createdBy: Int - """Only read the last `n` values of the set.""" - last: Int + """created at timestamp""" + createdAt: Datetime! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """updated by user id""" + updatedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """updated at timestamp""" + updatedAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """archived by user id""" + archivedBy: Int - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """archived at timestamp""" + archivedAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: FormDataCondition + """Flag to identify either announcement is primary or secondary""" + isPrimary: Boolean - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: FormDataFilter - ): FormDataConnection! + """ + Column describing the operation (created, updated, deleted) for context on the history page + """ + historyOperation: String } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection { +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge!]! + edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -29797,16 +33878,20 @@ type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -29825,32 +33910,32 @@ type FormCcbcUsersByFormDataFormSchemaIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection { +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge!]! + edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -29859,16 +33944,20 @@ type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -29887,31 +33976,54 @@ type FormCcbcUsersByFormDataFormSchemaIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } -"""A `Form` edge in the connection, with data from `FormData`.""" -type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToManyEdge { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + """ + edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Form` at the end of the edge.""" - node: Form + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -29930,291 +34042,153 @@ type FormDataStatusTypeFormsByFormDataFormDataStatusTypeIdAndFormSchemaIdManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! -} - -"""Methods to use when ordering `ApplicationFormData`.""" -enum ApplicationFormDataOrderBy { - NATURAL - FORM_DATA_ID_ASC - FORM_DATA_ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationFormData` object types. All fields -are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationFormDataCondition { - """Checks for equality with the object’s `formDataId` field.""" - formDataId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int -} - -""" -A connection to a list of `Application` values, with data from `ApplicationFormData`. -""" -type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! - - """ - A list of edges which contains the `Application`, info from the `ApplicationFormData`, and the cursor to aid in pagination. - """ - edges: [FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} - -""" -A `Application` edge in the connection, with data from `ApplicationFormData`. -""" -type FormDataApplicationsByApplicationFormDataFormDataIdAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Application` at the end of the edge.""" - node: Application + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } -"""A `ApplicationFormData` edge in the connection.""" -type ApplicationFormDataEdge { +"""A `ApplicationAnnouncement` edge in the connection.""" +type ApplicationAnnouncementsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationFormData` at the end of the edge.""" - node: ApplicationFormData + """The `ApplicationAnnouncement` at the end of the edge.""" + node: ApplicationAnnouncement } -"""A connection to a list of `ApplicationAnalystLead` values.""" -type ApplicationAnalystLeadsConnection { - """A list of `ApplicationAnalystLead` objects.""" - nodes: [ApplicationAnalystLead]! +"""A connection to a list of `ApplicationGisAssessmentHh` values.""" +type ApplicationGisAssessmentHhsConnection { + """A list of `ApplicationGisAssessmentHh` objects.""" + nodes: [ApplicationGisAssessmentHh]! """ - A list of edges which contains the `ApplicationAnalystLead` and cursor to aid in pagination. + A list of edges which contains the `ApplicationGisAssessmentHh` and cursor to aid in pagination. """ - edges: [ApplicationAnalystLeadsEdge!]! + edges: [ApplicationGisAssessmentHhsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationAnalystLead` you could get from the connection. + The count of *all* `ApplicationGisAssessmentHh` you could get from the connection. """ totalCount: Int! } -"""Table containing the analyst lead for the given application""" -type ApplicationAnalystLead implements Node { +"""Table containing data for the gis assessment hh numbers""" +type ApplicationGisAssessmentHh implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the application_analyst_lead""" + """Primary key and unique identifier""" rowId: Int! - """ID of the application this analyst lead belongs to""" - applicationId: Int - - """ID of the analyst this analyst lead belongs to""" - analystId: Int - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! + """The application_id of the application this record is associated with""" + applicationId: Int! - """archived by user id""" - archivedBy: Int + """The number of eligible households""" + eligible: Float - """archived at timestamp""" - archivedAt: Datetime + """The number of eligible indigenous households""" + eligibleIndigenous: Float """ - Reads a single `Application` that is related to this `ApplicationAnalystLead`. + Reads a single `Application` that is related to this `ApplicationGisAssessmentHh`. """ applicationByApplicationId: Application - - """ - Reads a single `Analyst` that is related to this `ApplicationAnalystLead`. - """ - analystByAnalystId: Analyst - - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. - """ - ccbcUserByCreatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. - """ - ccbcUserByUpdatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationAnalystLead`. - """ - ccbcUserByArchivedBy: CcbcUser } -"""A `ApplicationAnalystLead` edge in the connection.""" -type ApplicationAnalystLeadsEdge { +"""A `ApplicationGisAssessmentHh` edge in the connection.""" +type ApplicationGisAssessmentHhsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationAnalystLead` at the end of the edge.""" - node: ApplicationAnalystLead + """The `ApplicationGisAssessmentHh` at the end of the edge.""" + node: ApplicationGisAssessmentHh } -"""Methods to use when ordering `ApplicationAnalystLead`.""" -enum ApplicationAnalystLeadsOrderBy { +"""Methods to use when ordering `ApplicationGisAssessmentHh`.""" +enum ApplicationGisAssessmentHhsOrderBy { NATURAL ID_ASC ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - ANALYST_ID_ASC - ANALYST_ID_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC + ELIGIBLE_ASC + ELIGIBLE_DESC + ELIGIBLE_INDIGENOUS_ASC + ELIGIBLE_INDIGENOUS_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } -""" -A condition to be used against `ApplicationAnalystLead` object types. All fields -are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationAnalystLeadCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `analystId` field.""" - analystId: Int - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int +""" +A condition to be used against `ApplicationGisAssessmentHh` object types. All +fields are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationGisAssessmentHhCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Checks for equality with the object’s `eligible` field.""" + eligible: Float - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """Checks for equality with the object’s `eligibleIndigenous` field.""" + eligibleIndigenous: Float } -"""A connection to a list of `ApplicationRfiData` values.""" -type ApplicationRfiDataConnection { - """A list of `ApplicationRfiData` objects.""" - nodes: [ApplicationRfiData]! +"""A connection to a list of `ApplicationSowData` values.""" +type ApplicationSowDataConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `ApplicationRfiData` and cursor to aid in pagination. + A list of edges which contains the `ApplicationSowData` and cursor to aid in pagination. """ - edges: [ApplicationRfiDataEdge!]! + edges: [ApplicationSowDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationRfiData` you could get from the connection. + The count of *all* `ApplicationSowData` you could get from the connection. """ totalCount: Int! } -"""Table to pair an application to RFI data""" -type ApplicationRfiData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """The foreign key of a form""" - rfiDataId: Int! - - """The foreign key of an application""" - applicationId: Int! - - """Reads a single `RfiData` that is related to this `ApplicationRfiData`.""" - rfiDataByRfiDataId: RfiData - - """ - Reads a single `Application` that is related to this `ApplicationRfiData`. - """ - applicationByApplicationId: Application -} - -"""Table to hold RFI form data""" -type RfiData implements Node { +"""Table containing the SoW data for the given application""" +type ApplicationSowData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The unique id of the form data""" + """Unique ID for the SoW""" rowId: Int! - """Reference number assigned to the RFI""" - rfiNumber: String + """ID of the application this SoW belongs to""" + applicationId: Int """ - The json form data of the RFI information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Frfi_data.json) + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fapplication_sow_data.json) """ jsonData: JSON! - """Column referencing the form data status type, defaults to draft""" - rfiDataStatusTypeId: String - """created by user id""" createdBy: Int @@ -30233,20 +34207,34 @@ type RfiData implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `RfiDataStatusType` that is related to this `RfiData`.""" - rfiDataStatusTypeByRfiDataStatusTypeId: RfiDataStatusType + """The amendment number""" + amendmentNumber: Int - """Reads a single `CcbcUser` that is related to this `RfiData`.""" + """Column identifying if the record is an amendment""" + isAmendment: Boolean + + """ + Reads a single `Application` that is related to this `ApplicationSowData`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `RfiData`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `RfiData`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + """ ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `ApplicationRfiData`.""" - applicationRfiDataByRfiDataId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -30265,22 +34253,22 @@ type RfiData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationRfiData`.""" - orderBy: [ApplicationRfiDataOrderBy!] = [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: ApplicationRfiDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationRfiDataFilter - ): ApplicationRfiDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! - """Computed column to return all attachement rows for an rfi_data row""" - attachments( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -30299,14 +34287,22 @@ type RfiData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + + """ + 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: AttachmentFilter - ): AttachmentsConnection! + filter: SowTab1Filter + ): SowTab1SConnection! - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationRfiDataRfiDataIdAndApplicationId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -30325,36 +34321,56 @@ type RfiData 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 `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection! -} + filter: SowTab7Filter + ): SowTab7SConnection! -"""The statuses applicable to an RFI""" -type RfiDataStatusType implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( + """Only read the first `n` values of the set.""" + first: Int - """The name of the status type""" - name: String! + """Only read the last `n` values of the set.""" + last: Int - """The description of the status type""" - description: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByRfiDataStatusTypeId( + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: SowTab8Condition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab8Filter + ): SowTab8SConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab2SowIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -30373,22 +34389,22 @@ type RfiDataStatusType implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedBy( + ccbcUsersBySowTab2SowIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -30419,10 +34435,10 @@ type RfiDataStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection! + ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedBy( + ccbcUsersBySowTab2SowIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -30453,10 +34469,10 @@ type RfiDataStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection! + ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedBy( + ccbcUsersBySowTab1SowIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -30487,124 +34503,112 @@ type RfiDataStatusType implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection! -} + ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection! -"""A connection to a list of `RfiData` values.""" -type RfiDataConnection { - """A list of `RfiData` objects.""" - nodes: [RfiData]! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab1SowIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - A list of edges which contains the `RfiData` and cursor to aid in pagination. - """ - edges: [RfiDataEdge!]! + """Only read the last `n` values of the set.""" + last: Int - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """The count of *all* `RfiData` you could get from the connection.""" - totalCount: Int! -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -"""A `RfiData` edge in the connection.""" -type RfiDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The `RfiData` at the end of the edge.""" - node: RfiData -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""Methods to use when ordering `RfiData`.""" -enum RfiDataOrderBy { - NATURAL - ID_ASC - ID_DESC - RFI_NUMBER_ASC - RFI_NUMBER_DESC - JSON_DATA_ASC - JSON_DATA_DESC - RFI_DATA_STATUS_TYPE_ID_ASC - RFI_DATA_STATUS_TYPE_ID_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - 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 in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition -""" -A condition to be used against `RfiData` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input RfiDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection! - """Checks for equality with the object’s `rfiNumber` field.""" - rfiNumber: String + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab1SowIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `rfiDataStatusTypeId` field.""" - rfiDataStatusTypeId: String + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection! - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7SowIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Only read the last `n` values of the set.""" + last: Int - """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. - """ - edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge!]! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Read all values in the set after (below) this cursor.""" + after: Cursor -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByCreatedBy( + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7SowIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -30623,48 +34627,124 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndCreatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! -} + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection! -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab7SowIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. - """ - edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge!]! + """Only read the last `n` values of the set.""" + last: Int - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Read all values in the set before (above) this cursor.""" + before: Cursor -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByUpdatedBy( + """ + 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 + ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8SowIdAndCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8SowIdAndUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set 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 + ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection! + + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersBySowTab8SowIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -30683,173 +34763,182 @@ type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndUpdatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: CcbcUserFilter + ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection! } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `SowTab2` values.""" +type SowTab2SConnection { + """A list of `SowTab2` objects.""" + nodes: [SowTab2]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `SowTab2` and cursor to aid in pagination. """ - edges: [RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge!]! + edges: [SowTab2SEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `SowTab2` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type RfiDataStatusTypeCcbcUsersByRfiDataRfiDataStatusTypeIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""Table containing the detailed budget data for the given SoW""" +type SowTab2 implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Unique ID for the SoW detailed budget record""" + rowId: Int! - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """ID of the SoW""" + sowId: Int - """Only read the last `n` values of the set.""" - last: Int + """ + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_2.json) + """ + jsonData: JSON! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created by user id""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated by user id""" + updatedBy: Int - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: RfiDataCondition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: RfiDataFilter - ): RfiDataConnection! + """archived at timestamp""" + archivedAt: Datetime + + """Reads a single `ApplicationSowData` that is related to this `SowTab2`.""" + applicationSowDataBySowId: ApplicationSowData + + """Reads a single `CcbcUser` that is related to this `SowTab2`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `SowTab2`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `SowTab2`.""" + ccbcUserByArchivedBy: CcbcUser } -"""Methods to use when ordering `ApplicationRfiData`.""" -enum ApplicationRfiDataOrderBy { +"""A `SowTab2` edge in the connection.""" +type SowTab2SEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `SowTab2` at the end of the edge.""" + node: SowTab2 +} + +"""Methods to use when ordering `SowTab2`.""" +enum SowTab2SOrderBy { NATURAL - RFI_DATA_ID_ASC - RFI_DATA_ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC + ID_ASC + ID_DESC + SOW_ID_ASC + SOW_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationRfiData` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A condition to be used against `SowTab2` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationRfiDataCondition { - """Checks for equality with the object’s `rfiDataId` field.""" - rfiDataId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int -} +input SowTab2Condition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int -""" -A connection to a list of `Application` values, with data from `ApplicationRfiData`. -""" -type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! + """Checks for equality with the object’s `sowId` field.""" + sowId: Int - """ - A list of edges which contains the `Application`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. - """ - edges: [RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge!]! + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime -""" -A `Application` edge in the connection, with data from `ApplicationRfiData`. -""" -type RfiDataApplicationsByApplicationRfiDataRfiDataIdAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """The `Application` at the end of the edge.""" - node: Application -} + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime -"""A `ApplicationRfiData` edge in the connection.""" -type ApplicationRfiDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """The `ApplicationRfiData` at the end of the edge.""" - node: ApplicationRfiData + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } -"""A connection to a list of `AssessmentData` values.""" -type AssessmentDataConnection { - """A list of `AssessmentData` objects.""" - nodes: [AssessmentData]! +"""A connection to a list of `SowTab1` values.""" +type SowTab1SConnection { + """A list of `SowTab1` objects.""" + nodes: [SowTab1]! """ - A list of edges which contains the `AssessmentData` and cursor to aid in pagination. + A list of edges which contains the `SowTab1` and cursor to aid in pagination. """ - edges: [AssessmentDataEdge!]! + edges: [SowTab1SEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `AssessmentData` you could get from the connection.""" + """The count of *all* `SowTab1` you could get from the connection.""" totalCount: Int! } -type AssessmentData implements Node { +type SowTab1 implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! rowId: Int! - applicationId: Int! + sowId: Int """ - The json form data of the assessment form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fassessment_data.json) + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_1.json) """ jsonData: JSON! - assessmentDataType: String """created by user id""" createdBy: Int @@ -30869,221 +34958,296 @@ type AssessmentData implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `Application` that is related to this `AssessmentData`.""" - applicationByApplicationId: Application - - """ - Reads a single `AssessmentType` that is related to this `AssessmentData`. - """ - assessmentTypeByAssessmentDataType: AssessmentType + """Reads a single `ApplicationSowData` that is related to this `SowTab1`.""" + applicationSowDataBySowId: ApplicationSowData - """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" + """Reads a single `CcbcUser` that is related to this `SowTab1`.""" ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" + """Reads a single `CcbcUser` that is related to this `SowTab1`.""" ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `AssessmentData`.""" + """Reads a single `CcbcUser` that is related to this `SowTab1`.""" ccbcUserByArchivedBy: CcbcUser } +"""A `SowTab1` edge in the connection.""" +type SowTab1SEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `SowTab1` at the end of the edge.""" + node: SowTab1 +} + +"""Methods to use when ordering `SowTab1`.""" +enum SowTab1SOrderBy { + NATURAL + ID_ASC + ID_DESC + SOW_ID_ASC + SOW_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + """ -Table containing the different assessment types that can be assigned to an assessment +A condition to be used against `SowTab1` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -type AssessmentType implements Node { +input SowTab1Condition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `sowId` field.""" + sowId: Int + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `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 `SowTab7` values.""" +type SowTab7SConnection { + """A list of `SowTab7` objects.""" + nodes: [SowTab7]! + + """ + A list of edges which contains the `SowTab7` and cursor to aid in pagination. + """ + edges: [SowTab7SEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `SowTab7` you could get from the connection.""" + totalCount: Int! +} + +type SowTab7 implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! + rowId: Int! + sowId: Int - """Name of and primary key of the type of an assessment""" - name: String! + """ + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_7.json) + """ + jsonData: JSON! - """Description of the assessment type""" - description: String + """created by user id""" + createdBy: Int - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( - """Only read the first `n` values of the set.""" - first: Int + """created at timestamp""" + createdAt: Datetime! - """Only read the last `n` values of the set.""" - last: Int + """updated by user id""" + updatedBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """updated at timestamp""" + updatedAt: Datetime! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """archived by user id""" + archivedBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """archived at timestamp""" + archivedAt: Datetime - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """Reads a single `ApplicationSowData` that is related to this `SowTab7`.""" + applicationSowDataBySowId: ApplicationSowData - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AssessmentDataCondition + """Reads a single `CcbcUser` that is related to this `SowTab7`.""" + ccbcUserByCreatedBy: CcbcUser - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + """Reads a single `CcbcUser` that is related to this `SowTab7`.""" + ccbcUserByUpdatedBy: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByAssessmentDataAssessmentDataTypeAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Reads a single `CcbcUser` that is related to this `SowTab7`.""" + ccbcUserByArchivedBy: CcbcUser +} - """Only read the last `n` values of the set.""" - last: Int +"""A `SowTab7` edge in the connection.""" +type SowTab7SEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """The `SowTab7` at the end of the edge.""" + node: SowTab7 +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +"""Methods to use when ordering `SowTab7`.""" +enum SowTab7SOrderBy { + NATURAL + ID_ASC + ID_DESC + SOW_ID_ASC + SOW_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +""" +A condition to be used against `SowTab7` object types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input SowTab7Condition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `sowId` field.""" + sowId: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection! + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataAssessmentDataTypeAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] +"""A connection to a list of `SowTab8` values.""" +type SowTab8SConnection { + """A list of `SowTab8` objects.""" + nodes: [SowTab8]! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """ + A list of edges which contains the `SowTab8` and cursor to aid in pagination. + """ + edges: [SowTab8SEdge!]! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection! + """Information to aid in pagination.""" + pageInfo: PageInfo! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """The count of *all* `SowTab8` you could get from the connection.""" + totalCount: Int! +} - """Only read the last `n` values of the set.""" - last: Int +"""Table containing the detailed budget data for the given SoW""" +type SowTab8 implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Unique ID for the SoW Tab 8""" + rowId: Int! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ID of the SoW""" + sowId: Int + + """ + The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_8.json) + """ + jsonData: JSON! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """created by user id""" + createdBy: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """created at timestamp""" + createdAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """updated by user id""" + updatedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection! + """updated at timestamp""" + updatedAt: Datetime! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByAssessmentDataAssessmentDataTypeAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """archived by user id""" + archivedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """archived at timestamp""" + archivedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Reads a single `ApplicationSowData` that is related to this `SowTab8`.""" + applicationSowDataBySowId: ApplicationSowData - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + ccbcUserByCreatedBy: CcbcUser - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + ccbcUserByUpdatedBy: CcbcUser - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + ccbcUserByArchivedBy: CcbcUser +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +"""A `SowTab8` edge in the connection.""" +type SowTab8SEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection! + """The `SowTab8` at the end of the edge.""" + node: SowTab8 } -"""Methods to use when ordering `AssessmentData`.""" -enum AssessmentDataOrderBy { +"""Methods to use when ordering `SowTab8`.""" +enum SowTab8SOrderBy { NATURAL ID_ASC ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC + SOW_ID_ASC + SOW_ID_DESC JSON_DATA_ASC JSON_DATA_DESC - ASSESSMENT_DATA_TYPE_ASC - ASSESSMENT_DATA_TYPE_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -31101,22 +35265,18 @@ enum AssessmentDataOrderBy { } """ -A condition to be used against `AssessmentData` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A condition to be used against `SowTab8` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input AssessmentDataCondition { +input SowTab8Condition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Checks for equality with the object’s `sowId` field.""" + sowId: Int """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON - """Checks for equality with the object’s `assessmentDataType` field.""" - assessmentDataType: String - """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -31136,37 +35296,33 @@ input AssessmentDataCondition { archivedAt: Datetime } -""" -A connection to a list of `Application` values, with data from `AssessmentData`. -""" -type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `AssessmentData`. -""" -type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -31185,32 +35341,30 @@ type AssessmentTypeApplicationsByAssessmentDataAssessmentDataTypeAndApplicationI """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -31219,16 +35373,16 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyTo totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -31247,32 +35401,30 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -31281,16 +35433,16 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyTo totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -31309,32 +35461,30 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. -""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. """ - edges: [AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -31343,16 +35493,16 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyT totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -31371,433 +35521,228 @@ type AssessmentTypeCcbcUsersByAssessmentDataAssessmentDataTypeAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! -} - -"""A `AssessmentData` edge in the connection.""" -type AssessmentDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `AssessmentData` at the end of the edge.""" - node: AssessmentData -} - -"""A connection to a list of `ApplicationPackage` values.""" -type ApplicationPackagesConnection { - """A list of `ApplicationPackage` objects.""" - nodes: [ApplicationPackage]! - - """ - A list of edges which contains the `ApplicationPackage` and cursor to aid in pagination. - """ - edges: [ApplicationPackagesEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """ - The count of *all* `ApplicationPackage` you could get from the connection. - """ - totalCount: Int! -} - -"""Table containing the package the application is assigned to""" -type ApplicationPackage implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the application_package""" - rowId: Int! - - """The application_id of the application this record is associated with""" - applicationId: Int - - """The package number the application is assigned to""" - package: Int - - """created by user id""" - createdBy: Int - - """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 `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 -} - -"""A `ApplicationPackage` edge in the connection.""" -type ApplicationPackagesEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ApplicationPackage` at the end of the edge.""" - node: ApplicationPackage -} - -"""Methods to use when ordering `ApplicationPackage`.""" -enum ApplicationPackagesOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - PACKAGE_ASC - PACKAGE_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationPackage` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input ApplicationPackageCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `package` field.""" - package: Int - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + filter: SowTab1Filter + ): SowTab1SConnection! } -"""A connection to a list of `ConditionalApprovalData` values.""" -type ConditionalApprovalDataConnection { - """A list of `ConditionalApprovalData` objects.""" - nodes: [ConditionalApprovalData]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ConditionalApprovalData` and 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: [ConditionalApprovalDataEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ConditionalApprovalData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table to store conditional approval data""" -type ConditionalApprovalData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique id for the row""" - rowId: Int! - - """The foreign key of an application""" - applicationId: Int - - """ - The json form data of the conditional approval form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fconditional_approval_data.json) - """ - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """ - Reads a single `Application` that is related to this `ConditionalApprovalData`. - """ - applicationByApplicationId: Application - - """ - Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. - """ - ccbcUserByCreatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. - """ - ccbcUserByUpdatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ConditionalApprovalData`. - """ - ccbcUserByArchivedBy: CcbcUser -} - -"""A `ConditionalApprovalData` edge in the connection.""" -type ConditionalApprovalDataEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ConditionalApprovalData` at the end of the edge.""" - node: ConditionalApprovalData -} - -"""Methods to use when ordering `ConditionalApprovalData`.""" -enum ConditionalApprovalDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ConditionalApprovalData` object types. All -fields are tested for equality and combined with a logical ‘and.’ -""" -input ConditionalApprovalDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: SowTab1Condition - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab1Filter + ): SowTab1SConnection! } -"""A connection to a list of `ApplicationGisData` values.""" -type ApplicationGisDataConnection { - """A list of `ApplicationGisData` objects.""" - nodes: [ApplicationGisData]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationGisData` and 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: [ApplicationGisDataEdge!]! + edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationGisData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -type ApplicationGisData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - rowId: Int! - batchId: Int - applicationId: Int +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - The data imported from the GIS data Excel file. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fapplication_gis_data.json) - """ - jsonData: JSON! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """created by user id""" - createdBy: Int + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """created at timestamp""" - createdAt: Datetime! + """Only read the last `n` values of the set.""" + last: Int - """updated by user id""" - updatedBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """updated at timestamp""" - updatedAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """archived by user id""" - archivedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """archived at timestamp""" - archivedAt: Datetime + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] - """Reads a single `GisData` that is related to this `ApplicationGisData`.""" - gisDataByBatchId: GisData + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: SowTab1Condition - """ - Reads a single `Application` that is related to this `ApplicationGisData`. - """ - applicationByApplicationId: Application + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab1Filter + ): SowTab1SConnection! +} - """ - Reads a single `CcbcUser` that is related to this `ApplicationGisData`. - """ - ccbcUserByCreatedBy: CcbcUser +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads a single `CcbcUser` that is related to this `ApplicationGisData`. + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. """ - ccbcUserByUpdatedBy: CcbcUser + edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationGisData`. - """ - ccbcUserByArchivedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } -"""Table containing the uploaded GIS data in JSON format""" -type GisData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Primary key and unique identifier""" - rowId: Int! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - The data imported from the GIS data Excel file. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fgis_data.json) - """ - jsonData: JSON! + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """created by user id""" - createdBy: Int + """Only read the last `n` values of the set.""" + last: Int - """created at timestamp""" - createdAt: Datetime! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """updated by user id""" - updatedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """archived by user id""" - archivedBy: Int + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] - """archived at timestamp""" - archivedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: SowTab7Condition - """Reads a single `CcbcUser` that is related to this `GisData`.""" - ccbcUserByCreatedBy: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab7Filter + ): SowTab7SConnection! +} - """Reads a single `CcbcUser` that is related to this `GisData`.""" - ccbcUserByUpdatedBy: CcbcUser +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Reads a single `CcbcUser` that is related to this `GisData`.""" - ccbcUserByArchivedBy: CcbcUser + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge!]! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge { + """A cursor 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( """Only read the first `n` values of the set.""" first: Int @@ -31816,22 +35761,48 @@ type GisData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: SowTab7Filter + ): SowTab7SConnection! +} - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationGisDataBatchIdAndApplicationId( +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -31850,22 +35821,48 @@ type GisData 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 `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection! + filter: SowTab7Filter + ): SowTab7SConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataBatchIdAndCreatedBy( +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge!]! + + """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 `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -31884,22 +35881,48 @@ type GisData 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 `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection! + filter: SowTab8Filter + ): SowTab8SConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataBatchIdAndUpdatedBy( +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge!]! + + """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 `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -31918,22 +35941,48 @@ type GisData 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 `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection! + filter: SowTab8Filter + ): SowTab8SConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationGisDataBatchIdAndArchivedBy( +"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `SowTab8`, and the cursor to aid in pagination. + """ + edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge!]! + + """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 `SowTab8`.""" +type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge { + """A cursor 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( """Only read the first `n` values of the set.""" first: Int @@ -31946,34 +35995,194 @@ type GisData implements Node { """ offset: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: SowTab8Condition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: SowTab8Filter + ): SowTab8SConnection! +} + +"""A `ApplicationSowData` edge in the connection.""" +type ApplicationSowDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData +} + +"""Methods to use when ordering `ApplicationSowData`.""" +enum ApplicationSowDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + AMENDMENT_NUMBER_ASC + AMENDMENT_NUMBER_DESC + IS_AMENDMENT_ASC + IS_AMENDMENT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ApplicationSowData` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input ApplicationSowDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `amendmentNumber` field.""" + amendmentNumber: Int + + """Checks for equality with the object’s `isAmendment` field.""" + isAmendment: Boolean +} + +"""A connection to a list of `ProjectInformationData` values.""" +type ProjectInformationDataConnection { + """A list of `ProjectInformationData` objects.""" + nodes: [ProjectInformationData]! + + """ + A list of edges which contains the `ProjectInformationData` and cursor to aid in pagination. + """ + edges: [ProjectInformationDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """ + The count of *all* `ProjectInformationData` you could get from the connection. + """ + totalCount: Int! +} + +"""Table to store project information data""" +type ProjectInformationData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Unique id for the row""" + rowId: Int! + + """The foreign key of an application""" + applicationId: Int + + """ + The json form data of the project information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fproject_information_data.json) + """ + jsonData: JSON! + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """ + Reads a single `Application` that is related to this `ProjectInformationData`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ProjectInformationData`. + """ + ccbcUserByCreatedBy: CcbcUser - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Reads a single `CcbcUser` that is related to this `ProjectInformationData`. + """ + ccbcUserByUpdatedBy: CcbcUser - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Reads a single `CcbcUser` that is related to this `ProjectInformationData`. + """ + ccbcUserByArchivedBy: CcbcUser +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +"""A `ProjectInformationData` edge in the connection.""" +type ProjectInformationDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection! + """The `ProjectInformationData` at the end of the edge.""" + node: ProjectInformationData } -"""Methods to use when ordering `ApplicationGisData`.""" -enum ApplicationGisDataOrderBy { +"""Methods to use when ordering `ProjectInformationData`.""" +enum ProjectInformationDataOrderBy { NATURAL ID_ASC ID_DESC - BATCH_ID_ASC - BATCH_ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC JSON_DATA_ASC @@ -31995,16 +36204,13 @@ enum ApplicationGisDataOrderBy { } """ -A condition to be used against `ApplicationGisData` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A condition to be used against `ProjectInformationData` object types. All fields +are tested for equality and combined with a logical ‘and.’ """ -input ApplicationGisDataCondition { +input ProjectInformationDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `batchId` field.""" - batchId: Int - """Checks for equality with the object’s `applicationId` field.""" applicationId: Int @@ -32030,302 +36236,187 @@ input ApplicationGisDataCondition { archivedAt: Datetime } -""" -A connection to a list of `Application` values, with data from `ApplicationGisData`. -""" -type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `ChangeRequestData` values.""" +type ChangeRequestDataConnection { + """A list of `ChangeRequestData` objects.""" + nodes: [ChangeRequestData]! """ - 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 `ChangeRequestData` and cursor to aid in pagination. """ - edges: [GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge!]! + edges: [ChangeRequestDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ChangeRequestData` you could get from the connection. + """ totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataApplicationsByApplicationGisDataBatchIdAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Application` at the end of the edge.""" - node: Application +"""Table to store change request data""" +type ChangeRequestData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( - """Only read the first `n` values of the set.""" - first: Int + """Unique id for the row""" + rowId: Int! - """Only read the last `n` values of the set.""" - last: Int + """The foreign key of an application""" + applicationId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """The json form data of the change request form""" + jsonData: JSON! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created by user id""" + createdBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """created at timestamp""" + createdAt: Datetime! - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """updated by user id""" + updatedBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationGisDataCondition + """updated at timestamp""" + updatedAt: Datetime! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! -} + """archived by user id""" + archivedBy: Int -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """archived at timestamp""" + archivedAt: Datetime + amendmentNumber: Int """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + Reads a single `Application` that is related to this `ChangeRequestData`. """ - edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge!]! + applicationByApplicationId: Application - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + ccbcUserByCreatedBy: CcbcUser - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" + ccbcUserByArchivedBy: CcbcUser } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndCreatedByManyToManyEdge { +"""A `ChangeRequestData` edge in the connection.""" +type ChangeRequestDataEdge { """A cursor 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! + """The `ChangeRequestData` at the end of the edge.""" + node: ChangeRequestData } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. -""" -type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyConnection { - """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: [GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! +"""Methods to use when ordering `ChangeRequestData`.""" +enum ChangeRequestDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + AMENDMENT_NUMBER_ASC + AMENDMENT_NUMBER_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A condition to be used against `ChangeRequestData` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -type GisDataCcbcUsersByApplicationGisDataBatchIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +input ChangeRequestDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationGisDataCondition + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + """Checks for equality with the object’s `amendmentNumber` field.""" + amendmentNumber: Int } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `ApplicationCommunityProgressReportData` values. """ -type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type ApplicationCommunityProgressReportDataConnection { + """A list of `ApplicationCommunityProgressReportData` objects.""" + nodes: [ApplicationCommunityProgressReportData]! """ - 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 `ApplicationCommunityProgressReportData` and cursor to aid in pagination. """ - edges: [GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCommunityProgressReportDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationCommunityProgressReportData` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +Table containing the Community Progress Report data for the given application """ -type GisDataCcbcUsersByApplicationGisDataBatchIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationGisDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! -} - -"""A `ApplicationGisData` edge in the connection.""" -type ApplicationGisDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ApplicationGisData` at the end of the edge.""" - node: ApplicationGisData -} - -"""A connection to a list of `ApplicationAnnouncement` values.""" -type ApplicationAnnouncementsConnection { - """A list of `ApplicationAnnouncement` objects.""" - nodes: [ApplicationAnnouncement]! - +type ApplicationCommunityProgressReportData implements Node { """ - A list of edges which contains the `ApplicationAnnouncement` and cursor to aid in pagination. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - edges: [ApplicationAnnouncementsEdge!]! + id: ID! - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Unique ID for the Community Progress Report""" + rowId: Int! - """ - The count of *all* `ApplicationAnnouncement` you could get from the connection. - """ - totalCount: Int! -} + """ID of the application this Community Progress Report belongs to""" + applicationId: Int -"""Table to pair an application to RFI data""" -type ApplicationAnnouncement implements Node { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + The due date, date received and the file information of the Community Progress Report Excel file """ - id: ID! - - """The foreign key of a form""" - announcementId: Int! - - """The foreign key of an application""" - applicationId: Int! + jsonData: JSON! """created by user id""" createdBy: Int @@ -32345,56 +36436,147 @@ type ApplicationAnnouncement implements Node { """archived at timestamp""" archivedAt: Datetime - """Flag to identify either announcement is primary or secondary""" - isPrimary: Boolean + """The id of the excel data that this record is associated with""" + excelDataId: Int + + """History operation""" + historyOperation: String """ - Column describing the operation (created, updated, deleted) for context on the history page + Reads a single `Application` that is related to this `ApplicationCommunityProgressReportData`. """ - historyOperation: String + applicationByApplicationId: Application """ - Reads a single `Announcement` that is related to this `ApplicationAnnouncement`. + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. """ - announcementByAnnouncementId: Announcement + ccbcUserByCreatedBy: CcbcUser """ - Reads a single `Application` that is related to this `ApplicationAnnouncement`. + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. """ - applicationByApplicationId: Application + ccbcUserByUpdatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. """ - ccbcUserByCreatedBy: CcbcUser + ccbcUserByArchivedBy: CcbcUser +} + +"""A `ApplicationCommunityProgressReportData` edge in the connection.""" +type ApplicationCommunityProgressReportDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `ApplicationCommunityProgressReportData` at the end of the edge.""" + node: ApplicationCommunityProgressReportData +} + +"""Methods to use when ordering `ApplicationCommunityProgressReportData`.""" +enum ApplicationCommunityProgressReportDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + EXCEL_DATA_ID_ASC + EXCEL_DATA_ID_DESC + HISTORY_OPERATION_ASC + HISTORY_OPERATION_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `ApplicationCommunityProgressReportData` object +types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationCommunityProgressReportDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int + + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `excelDataId` field.""" + excelDataId: Int + + """Checks for equality with the object’s `historyOperation` field.""" + historyOperation: String +} + +""" +A connection to a list of `ApplicationCommunityReportExcelData` values. +""" +type ApplicationCommunityReportExcelDataConnection { + """A list of `ApplicationCommunityReportExcelData` objects.""" + nodes: [ApplicationCommunityReportExcelData]! """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + A list of edges which contains the `ApplicationCommunityReportExcelData` and cursor to aid in pagination. """ - ccbcUserByUpdatedBy: CcbcUser + edges: [ApplicationCommunityReportExcelDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! """ - Reads a single `CcbcUser` that is related to this `ApplicationAnnouncement`. + The count of *all* `ApplicationCommunityReportExcelData` you could get from the connection. """ - ccbcUserByArchivedBy: CcbcUser + totalCount: Int! } -"""Table to hold the announcement data""" -type Announcement implements Node { +""" +Table containing the Community Report excel data for the given application +""" +type ApplicationCommunityReportExcelData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """The unique id of the announcement data""" + """Unique ID for the Community Report excel data""" rowId: Int! - """List of CCBC number of the projects included in announcement""" - ccbcNumbers: String + """ID of the application this Community Report belongs to""" + applicationId: Int - """ - The json form data of the announcement form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fannouncement.json) - """ + """The data imported from the excel filled by the respondent""" jsonData: JSON! """created by user id""" @@ -32415,195 +36597,194 @@ type Announcement implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `CcbcUser` that is related to this `Announcement`.""" + """ + Reads a single `Application` that is related to this `ApplicationCommunityReportExcelData`. + """ + applicationByApplicationId: Application + + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `Announcement`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `Announcement`.""" - ccbcUserByArchivedBy: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. """ - applicationAnnouncementsByAnnouncementId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + ccbcUserByArchivedBy: CcbcUser +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnnouncementCondition +"""A `ApplicationCommunityReportExcelData` edge in the connection.""" +type ApplicationCommunityReportExcelDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + """The `ApplicationCommunityReportExcelData` at the end of the edge.""" + node: ApplicationCommunityReportExcelData +} - """Reads and enables pagination through a set of `Application`.""" - applicationsByApplicationAnnouncementAnnouncementIdAndApplicationId( - """Only read the first `n` values of the set.""" - first: Int +"""Methods to use when ordering `ApplicationCommunityReportExcelData`.""" +enum ApplicationCommunityReportExcelDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `ApplicationCommunityReportExcelData` object +types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationCommunityReportExcelDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - ): AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection! + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +"""A connection to a list of `ApplicationClaimsData` values.""" +type ApplicationClaimsDataConnection { + """A list of `ApplicationClaimsData` objects.""" + nodes: [ApplicationClaimsData]! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + A list of edges which contains the `ApplicationClaimsData` and cursor to aid in pagination. + """ + edges: [ApplicationClaimsDataEdge!]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Information to aid in pagination.""" + pageInfo: PageInfo! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + The count of *all* `ApplicationClaimsData` you could get from the connection. + """ + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +"""Table containing the claims data for the given application""" +type ApplicationClaimsData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection! + """Unique id for the claims""" + rowId: Int! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Id of the application the claims belongs to""" + applicationId: Int - """Only read the last `n` values of the set.""" - last: Int + """The claims form json data""" + jsonData: JSON! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """The id of the excel data that this record is associated with""" + excelDataId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created by user id""" + createdBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """created at timestamp""" + createdAt: Datetime! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """updated by user id""" + updatedBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """updated at timestamp""" + updatedAt: Datetime! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection! + """archived by user id""" + archivedBy: Int - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """archived at timestamp""" + archivedAt: Datetime - """Only read the last `n` values of the set.""" - last: Int + """Column to track if record was created, updated or deleted for history""" + historyOperation: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Reads a single `Application` that is related to this `ApplicationClaimsData`. + """ + applicationByApplicationId: Application - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. + """ + ccbcUserByCreatedBy: CcbcUser - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. + """ + ccbcUserByUpdatedBy: CcbcUser - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. + """ + ccbcUserByArchivedBy: CcbcUser +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +"""A `ApplicationClaimsData` edge in the connection.""" +type ApplicationClaimsDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection! + """The `ApplicationClaimsData` at the end of the edge.""" + node: ApplicationClaimsData } -"""Methods to use when ordering `ApplicationAnnouncement`.""" -enum ApplicationAnnouncementsOrderBy { +"""Methods to use when ordering `ApplicationClaimsData`.""" +enum ApplicationClaimsDataOrderBy { NATURAL - ANNOUNCEMENT_ID_ASC - ANNOUNCEMENT_ID_DESC + ID_ASC + ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + EXCEL_DATA_ID_ASC + EXCEL_DATA_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -32616,8 +36797,6 @@ enum ApplicationAnnouncementsOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC - IS_PRIMARY_ASC - IS_PRIMARY_DESC HISTORY_OPERATION_ASC HISTORY_OPERATION_DESC PRIMARY_KEY_ASC @@ -32625,16 +36804,22 @@ enum ApplicationAnnouncementsOrderBy { } """ -A condition to be used against `ApplicationAnnouncement` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationClaimsData` object types. All fields +are tested for equality and combined with a logical ‘and.’ """ -input ApplicationAnnouncementCondition { - """Checks for equality with the object’s `announcementId` field.""" - announcementId: Int +input ApplicationClaimsDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON + + """Checks for equality with the object’s `excelDataId` field.""" + excelDataId: Int + """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -32653,41 +36838,44 @@ input ApplicationAnnouncementCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime - """Checks for equality with the object’s `isPrimary` field.""" - isPrimary: Boolean - """Checks for equality with the object’s `historyOperation` field.""" historyOperation: String } -""" -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. -""" -type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `ApplicationClaimsExcelData` values.""" +type ApplicationClaimsExcelDataConnection { + """A list of `ApplicationClaimsExcelData` objects.""" + nodes: [ApplicationClaimsExcelData]! """ - 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 `ApplicationClaimsExcelData` and cursor to aid in pagination. """ - edges: [AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge!]! + edges: [ApplicationClaimsExcelDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationClaimsExcelData` you could get from the connection. + """ totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""Table containing the claims excel data for the given application""" +type ApplicationClaimsExcelData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `Application` at the end of the edge.""" - node: Application + """Unique ID for the claims excel data""" + rowId: Int! + + """ID of the application this data belongs to""" + applicationId: Int + + """The data imported from the excel filled by the respondent""" + jsonData: JSON! """created by user id""" createdBy: Int @@ -32707,344 +36895,426 @@ type AnnouncementApplicationsByApplicationAnnouncementAnnouncementIdAndApplicati """archived at timestamp""" archivedAt: Datetime - """Flag to identify either announcement is primary or secondary""" - isPrimary: Boolean + """ + Reads a single `Application` that is related to this `ApplicationClaimsExcelData`. + """ + applicationByApplicationId: Application """ - Column describing the operation (created, updated, deleted) for context on the history page + Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. """ - historyOperation: String -} + ccbcUserByCreatedBy: CcbcUser -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """ + Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. + """ + ccbcUserByUpdatedBy: CcbcUser """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. """ - edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge!]! + ccbcUserByArchivedBy: CcbcUser +} - """Information to aid in pagination.""" - pageInfo: PageInfo! +"""A `ApplicationClaimsExcelData` edge in the connection.""" +type ApplicationClaimsExcelDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """The `ApplicationClaimsExcelData` at the end of the edge.""" + node: ApplicationClaimsExcelData +} + +"""Methods to use when ordering `ApplicationClaimsExcelData`.""" +enum ApplicationClaimsExcelDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A condition to be used against `ApplicationClaimsExcelData` object types. All +fields are tested for equality and combined with a logical ‘and.’ """ -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser +input ApplicationClaimsExcelDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnnouncementCondition + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `ApplicationMilestoneData` values.""" +type ApplicationMilestoneDataConnection { + """A list of `ApplicationMilestoneData` objects.""" + nodes: [ApplicationMilestoneData]! """ - 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 `ApplicationMilestoneData` and cursor to aid in pagination. """ - edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationMilestoneDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} - -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """ + The count of *all* `ApplicationMilestoneData` you could get from the connection. + """ + totalCount: Int! +} +"""Table containing the milestone data for the given application""" +type ApplicationMilestoneData implements Node { """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - applicationAnnouncementsByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + id: ID! - """Only read the last `n` values of the set.""" - last: Int + """Unique id for the milestone""" + rowId: Int! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Id of the application the milestone belongs to""" + applicationId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """The milestone form json data""" + jsonData: JSON! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """The id of the excel data that this record is associated with""" + excelDataId: Int - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """created by user id""" + createdBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnnouncementCondition + """created at timestamp""" + createdAt: Datetime! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! -} + """updated by user id""" + updatedBy: Int -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime + + """History operation""" + historyOperation: String """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + Reads a single `Application` that is related to this `ApplicationMilestoneData`. """ - edges: [AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge!]! + applicationByApplicationId: Application - """Information to aid in pagination.""" - pageInfo: PageInfo! + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + """ + ccbcUserByCreatedBy: CcbcUser - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + """ + ccbcUserByUpdatedBy: CcbcUser + + """ + Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + """ + ccbcUserByArchivedBy: CcbcUser } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type AnnouncementCcbcUsersByApplicationAnnouncementAnnouncementIdAndArchivedByManyToManyEdge { +"""A `ApplicationMilestoneData` edge in the connection.""" +type ApplicationMilestoneDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationMilestoneData` at the end of the edge.""" + node: ApplicationMilestoneData +} - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +"""Methods to use when ordering `ApplicationMilestoneData`.""" +enum ApplicationMilestoneDataOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + EXCEL_DATA_ID_ASC + EXCEL_DATA_ID_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + HISTORY_OPERATION_ASC + HISTORY_OPERATION_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `ApplicationMilestoneData` object types. All +fields are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationMilestoneDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `excelDataId` field.""" + excelDataId: Int - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationAnnouncementCondition + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! -} + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int -"""A `ApplicationAnnouncement` edge in the connection.""" -type ApplicationAnnouncementsEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """The `ApplicationAnnouncement` at the end of the edge.""" - node: ApplicationAnnouncement + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime + + """Checks for equality with the object’s `historyOperation` field.""" + historyOperation: String } -"""A connection to a list of `ApplicationGisAssessmentHh` values.""" -type ApplicationGisAssessmentHhsConnection { - """A list of `ApplicationGisAssessmentHh` objects.""" - nodes: [ApplicationGisAssessmentHh]! +"""A connection to a list of `ApplicationMilestoneExcelData` values.""" +type ApplicationMilestoneExcelDataConnection { + """A list of `ApplicationMilestoneExcelData` objects.""" + nodes: [ApplicationMilestoneExcelData]! """ - A list of edges which contains the `ApplicationGisAssessmentHh` and cursor to aid in pagination. + A list of edges which contains the `ApplicationMilestoneExcelData` and cursor to aid in pagination. """ - edges: [ApplicationGisAssessmentHhsEdge!]! + edges: [ApplicationMilestoneExcelDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationGisAssessmentHh` you could get from the connection. + The count of *all* `ApplicationMilestoneExcelData` you could get from the connection. """ totalCount: Int! } -"""Table containing data for the gis assessment hh numbers""" -type ApplicationGisAssessmentHh implements Node { +"""Table containing the milestone excel data for the given application""" +type ApplicationMilestoneExcelData implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Primary key and unique identifier""" + """Unique ID for the milestone excel data""" rowId: Int! - """The application_id of the application this record is associated with""" - applicationId: Int! + """ID of the application this data belongs to""" + applicationId: Int - """The number of eligible households""" - eligible: Float + """The data imported from the excel filled by the respondent""" + jsonData: JSON! - """The number of eligible indigenous households""" - eligibleIndigenous: Float + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime! + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime! + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime """ - Reads a single `Application` that is related to this `ApplicationGisAssessmentHh`. + 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 } -"""A `ApplicationGisAssessmentHh` edge in the connection.""" -type ApplicationGisAssessmentHhsEdge { +"""A `ApplicationMilestoneExcelData` edge in the connection.""" +type ApplicationMilestoneExcelDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationGisAssessmentHh` at the end of the edge.""" - node: ApplicationGisAssessmentHh + """The `ApplicationMilestoneExcelData` at the end of the edge.""" + node: ApplicationMilestoneExcelData } -"""Methods to use when ordering `ApplicationGisAssessmentHh`.""" -enum ApplicationGisAssessmentHhsOrderBy { +"""Methods to use when ordering `ApplicationMilestoneExcelData`.""" +enum ApplicationMilestoneExcelDataOrderBy { NATURAL ID_ASC ID_DESC APPLICATION_ID_ASC APPLICATION_ID_DESC - ELIGIBLE_ASC - ELIGIBLE_DESC - ELIGIBLE_INDIGENOUS_ASC - ELIGIBLE_INDIGENOUS_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 `ApplicationGisAssessmentHh` object types. All +A condition to be used against `ApplicationMilestoneExcelData` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationGisAssessmentHhCondition { +input ApplicationMilestoneExcelDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int """Checks for equality with the object’s `applicationId` field.""" applicationId: Int - """Checks for equality with the object’s `eligible` field.""" - eligible: Float + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Checks for equality with the object’s `eligibleIndigenous` field.""" - eligibleIndigenous: Float + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime } -"""A connection to a list of `ApplicationSowData` values.""" -type ApplicationSowDataConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +"""A connection to a list of `ApplicationInternalDescription` values.""" +type ApplicationInternalDescriptionsConnection { + """A list of `ApplicationInternalDescription` objects.""" + nodes: [ApplicationInternalDescription]! """ - A list of edges which contains the `ApplicationSowData` and cursor to aid in pagination. + A list of edges which contains the `ApplicationInternalDescription` and cursor to aid in pagination. """ - edges: [ApplicationSowDataEdge!]! + edges: [ApplicationInternalDescriptionsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationSowData` you could get from the connection. + The count of *all* `ApplicationInternalDescription` you could get from the connection. """ totalCount: Int! } -"""Table containing the SoW data for the given application""" -type ApplicationSowData implements Node { +"""Table containing the internal description for the given application""" +type ApplicationInternalDescription implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the SoW""" + """Unique id for the row""" rowId: Int! - """ID of the application this SoW belongs to""" + """Id of the application the description belongs to""" applicationId: Int - """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fapplication_sow_data.json) - """ - jsonData: JSON! + """The internal description for the given application""" + description: String """created by user id""" createdBy: Int @@ -33064,442 +37334,365 @@ type ApplicationSowData implements Node { """archived at timestamp""" archivedAt: Datetime - """The amendment number""" - amendmentNumber: Int - - """Column identifying if the record is an amendment""" - isAmendment: Boolean - """ - Reads a single `Application` that is related to this `ApplicationSowData`. + Reads a single `Application` that is related to this `ApplicationInternalDescription`. """ applicationByApplicationId: Application """ - Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. """ ccbcUserByCreatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. """ ccbcUserByUpdatedBy: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationSowData`. + Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. """ ccbcUserByArchivedBy: CcbcUser +} - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """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: SowTab2Condition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab2Filter - ): SowTab2SConnection! - - """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! - - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( - """Only read the first `n` values of the set.""" - first: Int +"""A `ApplicationInternalDescription` edge in the connection.""" +type ApplicationInternalDescriptionsEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Only read the last `n` values of the set.""" - last: Int + """The `ApplicationInternalDescription` at the end of the edge.""" + node: ApplicationInternalDescription +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +"""Methods to use when ordering `ApplicationInternalDescription`.""" +enum ApplicationInternalDescriptionsOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A condition to be used against `ApplicationInternalDescription` object types. +All fields are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationInternalDescriptionCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `description` field.""" + description: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: SowTab7Condition + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab7Filter - ): SowTab7SConnection! + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SBySowId( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """Read all values in the set after (below) this cursor.""" - after: Cursor +"""A connection to a list of `ApplicationProjectType` values.""" +type ApplicationProjectTypesConnection { + """A list of `ApplicationProjectType` objects.""" + nodes: [ApplicationProjectType]! - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """ + A list of edges which contains the `ApplicationProjectType` and cursor to aid in pagination. + """ + edges: [ApplicationProjectTypesEdge!]! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: SowTab8Condition + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab8Filter - ): SowTab8SConnection! + """ + The count of *all* `ApplicationProjectType` you could get from the connection. + """ + totalCount: Int! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2SowIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int +"""Table containing the project type of the application""" +type ApplicationProjectType implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Only read the last `n` values of the set.""" - last: Int + """Unique ID for the application_project_type""" + rowId: Int! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ID of the application this application_project_type belongs to""" + applicationId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Column containing the project type of the application""" + projectType: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """created by user id""" + createdBy: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """created at timestamp""" + createdAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """updated by user id""" + updatedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection! + """updated at timestamp""" + updatedAt: Datetime! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2SowIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """archived by user id""" + archivedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """archived at timestamp""" + archivedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """ + Reads a single `Application` that is related to this `ApplicationProjectType`. + """ + applicationByApplicationId: Application - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. + """ + ccbcUserByCreatedBy: CcbcUser - """Read all values in the set after (below) this cursor.""" - after: Cursor + """ + Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. + """ + ccbcUserByUpdatedBy: CcbcUser - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """ + Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. + """ + ccbcUserByArchivedBy: CcbcUser +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +"""A `ApplicationProjectType` edge in the connection.""" +type ApplicationProjectTypesEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection! + """The `ApplicationProjectType` at the end of the edge.""" + node: ApplicationProjectType +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab2SowIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +"""Methods to use when ordering `ApplicationProjectType`.""" +enum ApplicationProjectTypesOrderBy { + NATURAL + ID_ASC + ID_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC + PROJECT_TYPE_ASC + PROJECT_TYPE_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `ApplicationProjectType` object types. All fields +are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationProjectTypeCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `projectType` field.""" + projectType: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection! + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1SowIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +"""A connection to a list of `Notification` values.""" +type NotificationsConnection { + """A list of `Notification` objects.""" + nodes: [Notification]! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """ + A list of edges which contains the `Notification` and cursor to aid in pagination. + """ + edges: [NotificationsEdge!]! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Information to aid in pagination.""" + pageInfo: PageInfo! - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The count of *all* `Notification` you could get from the connection.""" + totalCount: Int! +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition +"""Table containing list of application notifications""" +type Notification implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection! + """Unique ID for each notification""" + rowId: Int! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1SowIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Type of the notification""" + notificationType: String - """Only read the last `n` values of the set.""" - last: Int + """ID of the application this notification belongs to""" + applicationId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Additional data for the notification""" + jsonData: JSON! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Column referencing the email record""" + emailRecordId: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """created by user id""" + createdBy: Int - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """created at timestamp""" + createdAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """updated by user id""" + updatedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection! + """updated at timestamp""" + updatedAt: Datetime! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab1SowIdAndArchivedBy( - """Only read the first `n` values of the set.""" - first: Int + """archived by user id""" + archivedBy: Int - """Only read the last `n` values of the set.""" - last: Int + """archived at timestamp""" + archivedAt: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Reads a single `Application` that is related to this `Notification`.""" + applicationByApplicationId: Application - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Reads a single `EmailRecord` that is related to this `Notification`.""" + emailRecordByEmailRecordId: EmailRecord - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Reads a single `CcbcUser` that is related to this `Notification`.""" + ccbcUserByCreatedBy: CcbcUser - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Reads a single `CcbcUser` that is related to this `Notification`.""" + ccbcUserByUpdatedBy: CcbcUser - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Reads a single `CcbcUser` that is related to this `Notification`.""" + ccbcUserByArchivedBy: CcbcUser +} - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection! +"""Table containing list of application email_records""" +type EmailRecord implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7SowIdAndCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """Unique ID for each email sent""" + rowId: Int! - """Only read the last `n` values of the set.""" - last: Int + """Email Address(es) of the recipients""" + toEmail: String - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Email Address(es) of the CC recipients""" + ccEmail: String - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Subject of the email""" + subject: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Body of the email""" + body: String - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Message ID of the email returned by the email server""" + messageId: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Additional data for the email""" + jsonData: JSON! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection! + """created by user id""" + createdBy: Int - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7SowIdAndUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int + """created at timestamp""" + createdAt: Datetime! - """Only read the last `n` values of the set.""" - last: Int + """updated by user id""" + updatedBy: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """updated at timestamp""" + updatedAt: Datetime! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """archived by user id""" + archivedBy: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """archived at timestamp""" + archivedAt: Datetime - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + ccbcUserByCreatedBy: CcbcUser - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition + """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + ccbcUserByUpdatedBy: CcbcUser - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection! + """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" + ccbcUserByArchivedBy: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab7SowIdAndArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -33518,22 +37711,22 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection! + filter: NotificationFilter + ): NotificationsConnection! - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8SowIdAndCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByNotificationEmailRecordIdAndApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -33552,22 +37745,22 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection! + filter: ApplicationFilter + ): EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8SowIdAndUpdatedBy( + ccbcUsersByNotificationEmailRecordIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33598,10 +37791,10 @@ type ApplicationSowData implements Node { A filter to be used in determining which values should be returned by the collection. """ filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection! + ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection! """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersBySowTab8SowIdAndArchivedBy( + ccbcUsersByNotificationEmailRecordIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -33620,105 +37813,68 @@ type ApplicationSowData implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CcbcUserCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CcbcUserFilter - ): ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection! -} - -"""A connection to a list of `SowTab2` values.""" -type SowTab2SConnection { - """A list of `SowTab2` objects.""" - nodes: [SowTab2]! - - """ - A list of edges which contains the `SowTab2` and cursor to aid in pagination. - """ - edges: [SowTab2SEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `SowTab2` you could get from the connection.""" - totalCount: Int! -} - -"""Table containing the detailed budget data for the given SoW""" -type SowTab2 implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the SoW detailed budget record""" - rowId: Int! - - """ID of the SoW""" - sowId: Int - - """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_2.json) - """ - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] - """updated by user id""" - updatedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """updated at timestamp""" - updatedAt: Datetime! + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection! - """archived by user id""" - archivedBy: Int + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByNotificationEmailRecordIdAndArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """archived at timestamp""" - archivedAt: Datetime + """Only read the last `n` values of the set.""" + last: Int - """Reads a single `ApplicationSowData` that is related to this `SowTab2`.""" - applicationSowDataBySowId: ApplicationSowData + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Reads a single `CcbcUser` that is related to this `SowTab2`.""" - ccbcUserByCreatedBy: CcbcUser + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Reads a single `CcbcUser` that is related to this `SowTab2`.""" - ccbcUserByUpdatedBy: CcbcUser + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Reads a single `CcbcUser` that is related to this `SowTab2`.""" - ccbcUserByArchivedBy: CcbcUser -} + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] -"""A `SowTab2` edge in the connection.""" -type SowTab2SEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: CcbcUserCondition - """The `SowTab2` at the end of the edge.""" - node: SowTab2 + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: CcbcUserFilter + ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection! } -"""Methods to use when ordering `SowTab2`.""" -enum SowTab2SOrderBy { +"""Methods to use when ordering `Notification`.""" +enum NotificationsOrderBy { NATURAL ID_ASC ID_DESC - SOW_ID_ASC - SOW_ID_DESC + NOTIFICATION_TYPE_ASC + NOTIFICATION_TYPE_DESC + APPLICATION_ID_ASC + APPLICATION_ID_DESC JSON_DATA_ASC JSON_DATA_DESC + EMAIL_RECORD_ID_ASC + EMAIL_RECORD_ID_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -33736,18 +37892,25 @@ enum SowTab2SOrderBy { } """ -A condition to be used against `SowTab2` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `Notification` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input SowTab2Condition { +input NotificationCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `sowId` field.""" - sowId: Int + """Checks for equality with the object’s `notificationType` field.""" + notificationType: String + + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON + """Checks for equality with the object’s `emailRecordId` field.""" + emailRecordId: Int + """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -33767,294 +37930,304 @@ input SowTab2Condition { archivedAt: Datetime } -"""A connection to a list of `SowTab1` values.""" -type SowTab1SConnection { - """A list of `SowTab1` objects.""" - nodes: [SowTab1]! +""" +A connection to a list of `Application` values, with data from `Notification`. +""" +type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `SowTab1` and cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [SowTab1SEdge!]! + edges: [EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `SowTab1` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -type SowTab1 implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - rowId: Int! - sowId: Int +"""A `Application` edge in the connection, with data from `Notification`.""" +type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_1.json) - """ - jsonData: JSON! + """The `Application` at the end of the edge.""" + node: Application - """created by user id""" - createdBy: Int + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( + """Only read the first `n` values of the set.""" + first: Int - """created at timestamp""" - createdAt: Datetime! + """Only read the last `n` values of the set.""" + last: Int - """updated by user id""" - updatedBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """updated at timestamp""" - updatedAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """archived by user id""" - archivedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """archived at timestamp""" - archivedAt: Datetime + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] - """Reads a single `ApplicationSowData` that is related to this `SowTab1`.""" - applicationSowDataBySowId: ApplicationSowData + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition - """Reads a single `CcbcUser` that is related to this `SowTab1`.""" - ccbcUserByCreatedBy: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! +} - """Reads a single `CcbcUser` that is related to this `SowTab1`.""" - ccbcUserByUpdatedBy: CcbcUser +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Reads a single `CcbcUser` that is related to this `SowTab1`.""" - ccbcUserByArchivedBy: CcbcUser -} + """ + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + """ + edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge!]! -"""A `SowTab1` edge in the connection.""" -type SowTab1SEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Information to aid in pagination.""" + pageInfo: PageInfo! - """The `SowTab1` at the end of the edge.""" - node: SowTab1 + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } -"""Methods to use when ordering `SowTab1`.""" -enum SowTab1SOrderBy { - NATURAL - ID_ASC - ID_DESC - SOW_ID_ASC - SOW_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor -""" -A condition to be used against `SowTab1` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input SowTab1Condition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `sowId` field.""" - sowId: Int + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! } -"""A connection to a list of `SowTab7` values.""" -type SowTab7SConnection { - """A list of `SowTab7` objects.""" - nodes: [SowTab7]! +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `SowTab7` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [SowTab7SEdge!]! + edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `SowTab7` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -type SowTab7 implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - rowId: Int! - sowId: Int +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_7.json) - """ - jsonData: JSON! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """created by user id""" - createdBy: Int + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """created at timestamp""" - createdAt: Datetime! + """Only read the last `n` values of the set.""" + last: Int - """updated by user id""" - updatedBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """updated at timestamp""" - updatedAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """archived by user id""" - archivedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """archived at timestamp""" - archivedAt: Datetime + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] - """Reads a single `ApplicationSowData` that is related to this `SowTab7`.""" - applicationSowDataBySowId: ApplicationSowData + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition - """Reads a single `CcbcUser` that is related to this `SowTab7`.""" - ccbcUserByCreatedBy: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! +} - """Reads a single `CcbcUser` that is related to this `SowTab7`.""" - ccbcUserByUpdatedBy: CcbcUser +""" +A connection to a list of `CcbcUser` values, with data from `Notification`. +""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Reads a single `CcbcUser` that is related to this `SowTab7`.""" - ccbcUserByArchivedBy: CcbcUser + """ + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + """ + edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } -"""A `SowTab7` edge in the connection.""" -type SowTab7SEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `SowTab7` at the end of the edge.""" - node: SowTab7 -} + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser -"""Methods to use when ordering `SowTab7`.""" -enum SowTab7SOrderBy { - NATURAL - ID_ASC - ID_DESC - SOW_ID_ASC - SOW_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int -""" -A condition to be used against `SowTab7` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input SowTab7Condition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `sowId` field.""" - sowId: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: NotificationCondition - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: NotificationFilter + ): NotificationsConnection! +} - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int +"""A `Notification` edge in the connection.""" +type NotificationsEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """The `Notification` at the end of the edge.""" + node: Notification } -"""A connection to a list of `SowTab8` values.""" -type SowTab8SConnection { - """A list of `SowTab8` objects.""" - nodes: [SowTab8]! +"""A connection to a list of `ApplicationPendingChangeRequest` values.""" +type ApplicationPendingChangeRequestsConnection { + """A list of `ApplicationPendingChangeRequest` objects.""" + nodes: [ApplicationPendingChangeRequest]! """ - A list of edges which contains the `SowTab8` and cursor to aid in pagination. + A list of edges which contains the `ApplicationPendingChangeRequest` and cursor to aid in pagination. """ - edges: [SowTab8SEdge!]! + edges: [ApplicationPendingChangeRequestsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `SowTab8` you could get from the connection.""" + """ + The count of *all* `ApplicationPendingChangeRequest` you could get from the connection. + """ totalCount: Int! } -"""Table containing the detailed budget data for the given SoW""" -type SowTab8 implements Node { +"""Table containing the pending change request details of the application""" +type ApplicationPendingChangeRequest implements Node { """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ id: ID! - """Unique ID for the SoW Tab 8""" + """Unique ID for the application_pending_change_request""" rowId: Int! - """ID of the SoW""" - sowId: 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 """ - The data imported from the Excel filled by the respondent. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fsow_tab_8.json) + Column containing the comment for the change request or completion of the change request """ - jsonData: JSON! + comment: String """created by user id""" createdBy: Int @@ -34074,37 +38247,47 @@ type SowTab8 implements Node { """archived at timestamp""" archivedAt: Datetime - """Reads a single `ApplicationSowData` that is related to this `SowTab8`.""" - applicationSowDataBySowId: ApplicationSowData + """ + Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. + """ + applicationByApplicationId: Application - """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ ccbcUserByCreatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ ccbcUserByUpdatedBy: CcbcUser - """Reads a single `CcbcUser` that is related to this `SowTab8`.""" + """ + Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + """ ccbcUserByArchivedBy: CcbcUser } -"""A `SowTab8` edge in the connection.""" -type SowTab8SEdge { +"""A `ApplicationPendingChangeRequest` edge in the connection.""" +type ApplicationPendingChangeRequestsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `SowTab8` at the end of the edge.""" - node: SowTab8 + """The `ApplicationPendingChangeRequest` at the end of the edge.""" + node: ApplicationPendingChangeRequest } -"""Methods to use when ordering `SowTab8`.""" -enum SowTab8SOrderBy { +"""Methods to use when ordering `ApplicationPendingChangeRequest`.""" +enum ApplicationPendingChangeRequestsOrderBy { NATURAL ID_ASC ID_DESC - SOW_ID_ASC - SOW_ID_DESC - JSON_DATA_ASC - JSON_DATA_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 @@ -34122,17 +38305,21 @@ enum SowTab8SOrderBy { } """ -A condition to be used against `SowTab8` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `ApplicationPendingChangeRequest` object types. +All fields are tested for equality and combined with a logical ‘and.’ """ -input SowTab8Condition { +input ApplicationPendingChangeRequestCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `sowId` field.""" - sowId: Int + """Checks for equality with the object’s `applicationId` field.""" + applicationId: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Checks for equality with the object’s `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 @@ -34153,213 +38340,186 @@ input SowTab8Condition { archivedAt: Datetime } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Announcement` values.""" +type AnnouncementsConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - 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 `Announcement` and cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge!]! + edges: [AnnouncementsEdge!]! """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 `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndCreatedByManyToManyEdge { +"""A `Announcement` edge in the connection.""" +type AnnouncementsEdge { """A cursor 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( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """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: SowTab2Condition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab2Filter - ): SowTab2SConnection! + """The `Announcement` at the end of the edge.""" + node: Announcement } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `HistoryItem` values.""" +type HistoryItemsConnection { + """A list of `HistoryItem` objects.""" + nodes: [HistoryItem]! """ - 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 `HistoryItem` and cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge!]! + edges: [HistoryItemsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `HistoryItem` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int +""" +This is a type used to return records of history data in the application_history computed column +""" +type HistoryItem { + """Application Id.""" + applicationId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Timestamp of the operation recorded.""" + createdAt: Datetime - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Type of operation: INSERT/UPDATE/DELETE/TRUNCATE/SNAPSHOT.""" + op: Operation - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """Table name.""" + tableName: String - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: SowTab2Condition + """ + Identifier that uniquely identifies a record by primary key [primary key + table_oid]. + """ + recordId: UUID - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab2Filter - ): SowTab2SConnection! -} + """New record in Json format.""" + record: JSON -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Old record in Json format.""" + oldRecord: JSON """ - A list of edges which contains the `CcbcUser`, info from the `SowTab2`, and the cursor to aid in pagination. + Main object affected by the operation (i.e. status, or file name or RFI type). """ - edges: [ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge!]! + item: String - """Information to aid in pagination.""" - pageInfo: PageInfo! + """First Name of the user who performed the operation.""" + familyName: String - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """Last Name of the user who performed the operation.""" + givenName: String + + """Session sub of the user who performed the operation.""" + sessionSub: String + + """User is an external analyst""" + externalAnalyst: Boolean } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type ApplicationSowDataCcbcUsersBySowTab2SowIdAndArchivedByManyToManyEdge { +"""A `HistoryItem` edge in the connection.""" +type HistoryItemsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `HistoryItem` at the end of the edge.""" + node: HistoryItem +} - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +""" +A filter to be used against `HistoryItem` object types. All fields are combined with a logical ‘and.’ +""" +input HistoryItemFilter { + """Filter by the object’s `applicationId` field.""" + applicationId: IntFilter - """Only read the last `n` values of the set.""" - last: Int + """Filter by the object’s `createdAt` field.""" + createdAt: DatetimeFilter - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Filter by the object’s `op` field.""" + op: OperationFilter - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Filter by the object’s `tableName` field.""" + tableName: StringFilter - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Filter by the object’s `recordId` field.""" + recordId: UUIDFilter - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """Filter by the object’s `record` field.""" + record: JSONFilter - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: SowTab2Condition + """Filter by the object’s `oldRecord` field.""" + oldRecord: JSONFilter - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab2Filter - ): SowTab2SConnection! + """Filter by the object’s `item` field.""" + item: StringFilter + + """Filter by the object’s `familyName` field.""" + familyName: StringFilter + + """Filter by the object’s `givenName` field.""" + givenName: StringFilter + + """Filter by the object’s `sessionSub` field.""" + sessionSub: StringFilter + + """Filter by the object’s `externalAnalyst` field.""" + externalAnalyst: BooleanFilter + + """Checks for all expressions in this list.""" + and: [HistoryItemFilter!] + + """Checks for any expressions in this list.""" + or: [HistoryItemFilter!] + + """Negates the expression.""" + not: HistoryItemFilter } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +""" +type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge { +""" +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -34378,90 +38538,70 @@ type ApplicationSowDataCcbcUsersBySowTab1SowIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. - """ - edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! +"""Methods to use when ordering `ApplicationStatusType`.""" +enum ApplicationStatusTypesOrderBy { + NATURAL + NAME_ASC + NAME_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + VISIBLE_BY_APPLICANT_ASC + VISIBLE_BY_APPLICANT_DESC + STATUS_ORDER_ASC + STATUS_ORDER_DESC + VISIBLE_BY_ANALYST_ASC + VISIBLE_BY_ANALYST_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor +""" +A condition to be used against `ApplicationStatusType` object types. All fields +are tested for equality and combined with a logical ‘and.’ +""" +input ApplicationStatusTypeCondition { + """Checks for equality with the object’s `name` field.""" + name: String - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `description` field.""" + description: String - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `visibleByApplicant` field.""" + visibleByApplicant: Boolean - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: SowTab1Condition + """Checks for equality with the object’s `statusOrder` field.""" + statusOrder: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SowTab1Filter - ): SowTab1SConnection! + """Checks for equality with the object’s `visibleByAnalyst` field.""" + visibleByAnalyst: Boolean } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab1`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -34470,16 +38610,18 @@ type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34498,30 +38640,32 @@ type ApplicationSowDataCcbcUsersBySowTab1SowIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -34530,16 +38674,18 @@ type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -34558,30 +38704,32 @@ type ApplicationSowDataCcbcUsersBySowTab7SowIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `SowTab7`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -34590,16 +38738,18 @@ type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34618,48 +38768,54 @@ type ApplicationSowDataCcbcUsersBySowTab7SowIdAndUpdatedByManyToManyEdge { """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 `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. +""" +type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - 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 `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge { +""" +A `ApplicationStatus` edge in the connection, with data from `Attachment`. +""" +type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -34678,30 +38834,32 @@ type ApplicationSowDataCcbcUsersBySowTab7SowIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Attachment`. +""" +type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -34710,16 +38868,16 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34738,30 +38896,32 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Attachment`. +""" +type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -34770,16 +38930,16 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -34798,30 +38958,32 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Attachment`. +""" +type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection { """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 `Attachment`, and the cursor to aid in pagination. """ - edges: [ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -34830,16 +38992,16 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab8`.""" - sowTab8SByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -34858,486 +39020,126 @@ type ApplicationSowDataCcbcUsersBySowTab8SowIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! -} - -"""A `ApplicationSowData` edge in the connection.""" -type ApplicationSowDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData -} - -"""Methods to use when ordering `ApplicationSowData`.""" -enum ApplicationSowDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - AMENDMENT_NUMBER_ASC - AMENDMENT_NUMBER_DESC - IS_AMENDMENT_ASC - IS_AMENDMENT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A condition to be used against `ApplicationSowData` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A connection to a list of `FormData` values, with data from `ApplicationFormData`. """ -input ApplicationSowDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime - - """Checks for equality with the object’s `amendmentNumber` field.""" - amendmentNumber: Int - - """Checks for equality with the object’s `isAmendment` field.""" - isAmendment: Boolean -} - -"""A connection to a list of `ProjectInformationData` values.""" -type ProjectInformationDataConnection { - """A list of `ProjectInformationData` objects.""" - nodes: [ProjectInformationData]! +type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection { + """A list of `FormData` objects.""" + nodes: [FormData]! """ - A list of edges which contains the `ProjectInformationData` and cursor to aid in pagination. + A list of edges which contains the `FormData`, info from the `ApplicationFormData`, and the cursor to aid in pagination. """ - edges: [ProjectInformationDataEdge!]! + edges: [ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ProjectInformationData` you could get from the connection. - """ + """The count of *all* `FormData` you could get from the connection.""" totalCount: Int! } -"""Table to store project information data""" -type ProjectInformationData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique id for the row""" - rowId: Int! - - """The foreign key of an application""" - applicationId: Int - - """ - The json form data of the project information form. See [schema](https://json-schema.app/view/%23?url=https%3A%2F%2Fbcgov.github.io%2FCONN-CCBC-portal%2Fschemaspy%2Fdata%2Fproject_information_data.json) - """ - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """ - Reads a single `Application` that is related to this `ProjectInformationData`. - """ - applicationByApplicationId: Application - - """ - Reads a single `CcbcUser` that is related to this `ProjectInformationData`. - """ - ccbcUserByCreatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ProjectInformationData`. - """ - ccbcUserByUpdatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ProjectInformationData`. - """ - ccbcUserByArchivedBy: CcbcUser -} - -"""A `ProjectInformationData` edge in the connection.""" -type ProjectInformationDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ProjectInformationData` at the end of the edge.""" - node: ProjectInformationData -} - -"""Methods to use when ordering `ProjectInformationData`.""" -enum ProjectInformationDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - """ -A condition to be used against `ProjectInformationData` object types. All fields -are tested for equality and combined with a logical ‘and.’ +A `FormData` edge in the connection, with data from `ApplicationFormData`. """ -input ProjectInformationDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} - -"""A connection to a list of `ChangeRequestData` values.""" -type ChangeRequestDataConnection { - """A list of `ChangeRequestData` objects.""" - nodes: [ChangeRequestData]! - - """ - A list of edges which contains the `ChangeRequestData` and cursor to aid in pagination. - """ - edges: [ChangeRequestDataEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """ - The count of *all* `ChangeRequestData` you could get from the connection. - """ - totalCount: Int! -} - -"""Table to store change request data""" -type ChangeRequestData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique id for the row""" - rowId: Int! - - """The foreign key of an application""" - applicationId: Int - - """The json form data of the change request form""" - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - amendmentNumber: Int - - """ - Reads a single `Application` that is related to this `ChangeRequestData`. - """ - applicationByApplicationId: Application - - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `ChangeRequestData`.""" - ccbcUserByArchivedBy: CcbcUser -} - -"""A `ChangeRequestData` edge in the connection.""" -type ChangeRequestDataEdge { +type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ChangeRequestData` at the end of the edge.""" - node: ChangeRequestData -} - -"""Methods to use when ordering `ChangeRequestData`.""" -enum ChangeRequestDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - AMENDMENT_NUMBER_ASC - AMENDMENT_NUMBER_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ChangeRequestData` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input ChangeRequestDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime - - """Checks for equality with the object’s `amendmentNumber` field.""" - amendmentNumber: Int + """The `FormData` at the end of the edge.""" + node: FormData } """ -A connection to a list of `ApplicationCommunityProgressReportData` values. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type ApplicationCommunityProgressReportDataConnection { - """A list of `ApplicationCommunityProgressReportData` objects.""" - nodes: [ApplicationCommunityProgressReportData]! +type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `ApplicationCommunityProgressReportData` and cursor to aid in pagination. + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [ApplicationCommunityProgressReportDataEdge!]! + edges: [ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationCommunityProgressReportData` you could get from the connection. - """ + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -Table containing the Community Progress Report data for the given application +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type ApplicationCommunityProgressReportData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the Community Progress Report""" - rowId: Int! - - """ID of the application this Community Progress Report belongs to""" - applicationId: Int - - """ - The due date, date received and the file information of the Community Progress Report Excel file - """ - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """The id of the excel data that this record is associated with""" - excelDataId: Int - - """History operation""" - historyOperation: String - - """ - Reads a single `Application` that is related to this `ApplicationCommunityProgressReportData`. - """ - applicationByApplicationId: Application - - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. - """ - ccbcUserByCreatedBy: CcbcUser +type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """The `Analyst` at the end of the edge.""" + node: Analyst """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityProgressReportData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - ccbcUserByArchivedBy: CcbcUser -} + applicationAnalystLeadsByAnalystId( + """Only read the first `n` values of the set.""" + first: Int -"""A `ApplicationCommunityProgressReportData` edge in the connection.""" -type ApplicationCommunityProgressReportDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Only read the last `n` values of the set.""" + last: Int - """The `ApplicationCommunityProgressReportData` at the end of the edge.""" - node: ApplicationCommunityProgressReportData + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnalystLeadCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } -"""Methods to use when ordering `ApplicationCommunityProgressReportData`.""" -enum ApplicationCommunityProgressReportDataOrderBy { +"""Methods to use when ordering `Analyst`.""" +enum AnalystsOrderBy { NATURAL ID_ASC ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC + GIVEN_NAME_ASC + GIVEN_NAME_DESC + FAMILY_NAME_ASC + FAMILY_NAME_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -35350,27 +39152,26 @@ enum ApplicationCommunityProgressReportDataOrderBy { ARCHIVED_BY_DESC ARCHIVED_AT_ASC ARCHIVED_AT_DESC - EXCEL_DATA_ID_ASC - EXCEL_DATA_ID_DESC - HISTORY_OPERATION_ASC - HISTORY_OPERATION_DESC + ACTIVE_ASC + ACTIVE_DESC + EMAIL_ASC + EMAIL_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationCommunityProgressReportData` object -types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `Analyst` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationCommunityProgressReportDataCondition { +input AnalystCondition { """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 `givenName` field.""" + givenName: String - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Checks for equality with the object’s `familyName` field.""" + familyName: String """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -35390,703 +39191,973 @@ input ApplicationCommunityProgressReportDataCondition { """Checks for equality with the object’s `archivedAt` field.""" archivedAt: Datetime - """Checks for equality with the object’s `excelDataId` field.""" - excelDataId: Int + """Checks for equality with the object’s `active` field.""" + active: Boolean - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String + """Checks for equality with the object’s `email` field.""" + email: String } """ -A connection to a list of `ApplicationCommunityReportExcelData` values. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type ApplicationCommunityReportExcelDataConnection { - """A list of `ApplicationCommunityReportExcelData` objects.""" - nodes: [ApplicationCommunityReportExcelData]! +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationCommunityReportExcelData` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [ApplicationCommunityReportExcelDataEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge!]! """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 `ApplicationAnalystLead`. +""" +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + """ - The count of *all* `ApplicationCommunityReportExcelData` you could get from the connection. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - totalCount: Int! + applicationAnalystLeadsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnalystLeadCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -Table containing the Community Report excel data for the given application +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type ApplicationCommunityReportExcelData implements Node { +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - id: ID! + edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge!]! - """Unique ID for the Community Report excel data""" - rowId: Int! + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ID of the application this Community Report belongs to""" - applicationId: Int + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} - """The data imported from the excel filled by the respondent""" - jsonData: JSON! +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """created by user id""" - createdBy: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """created at timestamp""" - createdAt: Datetime! + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """updated by user id""" - updatedBy: Int + """Only read the last `n` values of the set.""" + last: Int - """updated at timestamp""" - updatedAt: Datetime! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """archived by user id""" - archivedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """archived at timestamp""" - archivedAt: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnalystLeadCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +""" +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads a single `Application` that is related to this `ApplicationCommunityReportExcelData`. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - applicationByApplicationId: Application + edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge!]! + + """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 `ApplicationAnalystLead`. +""" +type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationAnalystLead`. """ - ccbcUserByCreatedBy: CcbcUser + applicationAnalystLeadsByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationAnalystLeadCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! +} + +""" +A connection to a list of `RfiData` values, with data from `ApplicationRfiData`. +""" +type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection { + """A list of `RfiData` objects.""" + nodes: [RfiData]! """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + A list of edges which contains the `RfiData`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. """ - ccbcUserByUpdatedBy: CcbcUser + edges: [ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `RfiData` you could get from the connection.""" + totalCount: Int! +} + +""" +A `RfiData` edge in the connection, with data from `ApplicationRfiData`. +""" +type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `RfiData` at the end of the edge.""" + node: RfiData +} + +""" +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +""" +type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - Reads a single `CcbcUser` that is related to this `ApplicationCommunityReportExcelData`. + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - ccbcUserByArchivedBy: CcbcUser + edges: [ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `AssessmentType` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationCommunityReportExcelData` edge in the connection.""" -type ApplicationCommunityReportExcelDataEdge { +""" +A `AssessmentType` edge in the connection, with data from `AssessmentData`. +""" +type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationCommunityReportExcelData` at the end of the edge.""" - node: ApplicationCommunityReportExcelData + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""Methods to use when ordering `ApplicationCommunityReportExcelData`.""" -enum ApplicationCommunityReportExcelDataOrderBy { +"""Methods to use when ordering `AssessmentType`.""" +enum AssessmentTypesOrderBy { NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC + NAME_ASC + NAME_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC PRIMARY_KEY_ASC PRIMARY_KEY_DESC } """ -A condition to be used against `ApplicationCommunityReportExcelData` object -types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `AssessmentType` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input ApplicationCommunityReportExcelDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +input AssessmentTypeCondition { + """Checks for equality with the object’s `name` field.""" + name: String - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Checks for equality with the object’s `description` field.""" + description: String +} - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `ApplicationClaimsData` values.""" -type ApplicationClaimsDataConnection { - """A list of `ApplicationClaimsData` objects.""" - nodes: [ApplicationClaimsData]! +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationClaimsData` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [ApplicationClaimsDataEdge!]! + edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationClaimsData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table containing the claims data for the given application""" -type ApplicationClaimsData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique id for the claims""" - rowId: Int! - - """Id of the application the claims belongs to""" - applicationId: Int - - """The claims form json data""" - jsonData: JSON! - - """The id of the excel data that this record is associated with""" - excelDataId: Int +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """created by user id""" - createdBy: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """created at timestamp""" - createdAt: Datetime! + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """updated by user id""" - updatedBy: Int + """Only read the last `n` values of the set.""" + last: Int - """updated at timestamp""" - updatedAt: Datetime! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """archived by user id""" - archivedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """archived at timestamp""" - archivedAt: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Column to track if record was created, updated or deleted for history""" - historyOperation: String + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] - """ - Reads a single `Application` that is related to this `ApplicationClaimsData`. - """ - applicationByApplicationId: Application + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: AssessmentDataCondition - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. - """ - ccbcUserByCreatedBy: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: AssessmentDataFilter + ): AssessmentDataConnection! +} - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. - """ - ccbcUserByUpdatedBy: CcbcUser +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +""" +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsData`. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - ccbcUserByArchivedBy: CcbcUser -} - -"""A `ApplicationClaimsData` edge in the connection.""" -type ApplicationClaimsDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge!]! - """The `ApplicationClaimsData` at the end of the edge.""" - node: ApplicationClaimsData -} + """Information to aid in pagination.""" + pageInfo: PageInfo! -"""Methods to use when ordering `ApplicationClaimsData`.""" -enum ApplicationClaimsDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - EXCEL_DATA_ID_ASC - EXCEL_DATA_ID_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - HISTORY_OPERATION_ASC - HISTORY_OPERATION_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } """ -A condition to be used against `ApplicationClaimsData` object types. All fields -are tested for equality and combined with a logical ‘and.’ +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -input ApplicationClaimsDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `excelDataId` field.""" - excelDataId: Int + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPackageCondition - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } -"""A connection to a list of `ApplicationClaimsExcelData` values.""" -type ApplicationClaimsExcelDataConnection { - """A list of `ApplicationClaimsExcelData` objects.""" - nodes: [ApplicationClaimsExcelData]! +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +""" +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationClaimsExcelData` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [ApplicationClaimsExcelDataEdge!]! + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationClaimsExcelData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table containing the claims excel data for the given application""" -type ApplicationClaimsExcelData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Unique ID for the claims excel data""" - rowId: Int! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ID of the application this data belongs to""" - applicationId: Int + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """The data imported from the excel filled by the respondent""" - jsonData: JSON! + """Only read the last `n` values of the set.""" + last: Int - """created by user id""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """created at timestamp""" - createdAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated by user id""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] - """archived by user id""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPackageCondition - """archived at timestamp""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationClaimsExcelData`. - """ - applicationByApplicationId: Application +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +""" +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - Reads a single `CcbcUser` that is related to this `ApplicationClaimsExcelData`. - """ - ccbcUserByArchivedBy: CcbcUser + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationClaimsExcelData` edge in the connection.""" -type ApplicationClaimsExcelDataEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationClaimsExcelData` at the end of the edge.""" - node: ApplicationClaimsExcelData -} - -"""Methods to use when ordering `ApplicationClaimsExcelData`.""" -enum ApplicationClaimsExcelDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationClaimsExcelData` object types. All -fields are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationClaimsExcelDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPackageCondition - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } -"""A connection to a list of `ApplicationMilestoneData` values.""" -type ApplicationMilestoneDataConnection { - """A list of `ApplicationMilestoneData` objects.""" - nodes: [ApplicationMilestoneData]! +""" +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +""" +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationMilestoneData` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [ApplicationMilestoneDataEdge!]! + edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationMilestoneData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table containing the milestone data for the given application""" -type ApplicationMilestoneData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique id for the milestone""" - rowId: Int! - - """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 +""" +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +""" +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """created at timestamp""" - createdAt: Datetime! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """updated by user id""" - updatedBy: Int + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """updated at timestamp""" - updatedAt: Datetime! + """Only read the last `n` values of the set.""" + last: Int - """archived by user id""" - archivedBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """archived at timestamp""" - archivedAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """History operation""" - historyOperation: String + """Read all values in the set after (below) this cursor.""" + after: Cursor - """ - Reads a single `Application` that is related to this `ApplicationMilestoneData`. - """ - applicationByApplicationId: Application + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. - """ - ccbcUserByCreatedBy: CcbcUser + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ConditionalApprovalDataCondition - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! +} + +""" +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +""" +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneData`. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - ccbcUserByArchivedBy: CcbcUser -} - -"""A `ApplicationMilestoneData` edge in the connection.""" -type ApplicationMilestoneDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor + edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge!]! - """The `ApplicationMilestoneData` at the end of the edge.""" - node: ApplicationMilestoneData -} + """Information to aid in pagination.""" + pageInfo: PageInfo! -"""Methods to use when ordering `ApplicationMilestoneData`.""" -enum ApplicationMilestoneDataOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - EXCEL_DATA_ID_ASC - EXCEL_DATA_ID_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - HISTORY_OPERATION_ASC - HISTORY_OPERATION_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } """ -A condition to be used against `ApplicationMilestoneData` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -input ApplicationMilestoneDataCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `excelDataId` field.""" - excelDataId: Int + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ConditionalApprovalDataCondition - """Checks for equality with the object’s `historyOperation` field.""" - historyOperation: String + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } -"""A connection to a list of `ApplicationMilestoneExcelData` values.""" -type ApplicationMilestoneExcelDataConnection { - """A list of `ApplicationMilestoneExcelData` objects.""" - nodes: [ApplicationMilestoneExcelData]! +""" +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +""" +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationMilestoneExcelData` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [ApplicationMilestoneExcelDataEdge!]! + edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationMilestoneExcelData` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table containing the milestone excel data for the given application""" -type ApplicationMilestoneExcelData implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! +""" +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +""" +type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Unique ID for the milestone excel data""" - rowId: Int! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ID of the application this data belongs to""" - applicationId: Int + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """The data imported from the excel filled by the respondent""" - jsonData: JSON! + """Only read the last `n` values of the set.""" + last: Int - """created by user id""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """created at timestamp""" - createdAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated by user id""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] - """archived by user id""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ConditionalApprovalDataCondition - """archived at timestamp""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationMilestoneExcelData`. - """ - applicationByApplicationId: Application +""" +A connection to a list of `GisData` values, with data from `ApplicationGisData`. +""" +type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. + A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - Reads a single `CcbcUser` that is related to this `ApplicationMilestoneExcelData`. - """ - ccbcUserByArchivedBy: CcbcUser + """The count of *all* `GisData` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationMilestoneExcelData` edge in the connection.""" -type ApplicationMilestoneExcelDataEdge { +""" +A `GisData` edge in the connection, with data from `ApplicationGisData`. +""" +type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationMilestoneExcelData` at the end of the edge.""" - node: ApplicationMilestoneExcelData + """The `GisData` at the end of the edge.""" + node: GisData + + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""Methods to use when ordering `ApplicationMilestoneExcelData`.""" -enum ApplicationMilestoneExcelDataOrderBy { +"""Methods to use when ordering `GisData`.""" +enum GisDataOrderBy { NATURAL ID_ASC ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC JSON_DATA_ASC JSON_DATA_DESC CREATED_BY_ASC @@ -36106,16 +40177,12 @@ enum ApplicationMilestoneExcelDataOrderBy { } """ -A condition to be used against `ApplicationMilestoneExcelData` object types. All -fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `GisData` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -input ApplicationMilestoneExcelDataCondition { +input GisDataCondition { """Checks for equality with the object’s `rowId` field.""" rowId: Int - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - """Checks for equality with the object’s `jsonData` field.""" jsonData: JSON @@ -36138,181 +40205,226 @@ input ApplicationMilestoneExcelDataCondition { archivedAt: Datetime } -"""A connection to a list of `ApplicationInternalDescription` values.""" -type ApplicationInternalDescriptionsConnection { - """A list of `ApplicationInternalDescription` objects.""" - nodes: [ApplicationInternalDescription]! +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationInternalDescription` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [ApplicationInternalDescriptionsEdge!]! + edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationInternalDescription` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table containing the internal description for the given application""" -type ApplicationInternalDescription implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Unique id for the row""" - rowId: Int! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Id of the application the description belongs to""" - applicationId: Int + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """The internal description for the given application""" - description: String + """Only read the last `n` values of the set.""" + last: Int - """created by user id""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """created at timestamp""" - createdAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """updated by user id""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """updated at timestamp""" - updatedAt: Datetime! + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] - """archived by user id""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisDataCondition - """archived at timestamp""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! +} - """ - Reads a single `Application` that is related to this `ApplicationInternalDescription`. - """ - applicationByApplicationId: Application +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - ccbcUserByCreatedBy: CcbcUser + edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge!]! - """ - Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Information to aid in pagination.""" + pageInfo: PageInfo! - """ - Reads a single `CcbcUser` that is related to this `ApplicationInternalDescription`. - """ - ccbcUserByArchivedBy: CcbcUser + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } -"""A `ApplicationInternalDescription` edge in the connection.""" -type ApplicationInternalDescriptionsEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +""" +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationInternalDescription` at the end of the edge.""" - node: ApplicationInternalDescription + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""Methods to use when ordering `ApplicationInternalDescription`.""" -enum ApplicationInternalDescriptionsOrderBy { - NATURAL - ID_ASC - ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +""" +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } """ -A condition to be used against `ApplicationInternalDescription` object types. -All fields are tested for equality and combined with a logical ‘and.’ +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -input ApplicationInternalDescriptionCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `description` field.""" - description: String + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationGisDataCondition - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `ApplicationProjectType` values.""" -type ApplicationProjectTypesConnection { - """A list of `ApplicationProjectType` objects.""" - nodes: [ApplicationProjectType]! +""" +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +""" +type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - A list of edges which contains the `ApplicationProjectType` and cursor to aid in pagination. + A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [ApplicationProjectTypesEdge!]! + edges: [ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationProjectType` you could get from the connection. - """ + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } -"""Table containing the project type of the application""" -type ApplicationProjectType implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the application_project_type""" - rowId: Int! - - """ID of the application this application_project_type belongs to""" - applicationId: Int +""" +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Column containing the project type of the application""" - projectType: String + """The `Announcement` at the end of the edge.""" + node: Announcement """created by user id""" createdBy: Int @@ -36332,45 +40444,24 @@ type ApplicationProjectType implements Node { """archived at timestamp""" archivedAt: Datetime - """ - Reads a single `Application` that is related to this `ApplicationProjectType`. - """ - applicationByApplicationId: Application - - """ - Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. - """ - ccbcUserByCreatedBy: CcbcUser - - """ - Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. - """ - ccbcUserByUpdatedBy: CcbcUser + """Flag to identify either announcement is primary or secondary""" + isPrimary: Boolean """ - Reads a single `CcbcUser` that is related to this `ApplicationProjectType`. + Column describing the operation (created, updated, deleted) for context on the history page """ - ccbcUserByArchivedBy: CcbcUser -} - -"""A `ApplicationProjectType` edge in the connection.""" -type ApplicationProjectTypesEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `ApplicationProjectType` at the end of the edge.""" - node: ApplicationProjectType + historyOperation: String } -"""Methods to use when ordering `ApplicationProjectType`.""" -enum ApplicationProjectTypesOrderBy { +"""Methods to use when ordering `Announcement`.""" +enum AnnouncementsOrderBy { NATURAL ID_ASC ID_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - PROJECT_TYPE_ASC - PROJECT_TYPE_DESC + CCBC_NUMBERS_ASC + CCBC_NUMBERS_DESC + JSON_DATA_ASC + JSON_DATA_DESC CREATED_BY_ASC CREATED_BY_DESC CREATED_AT_ASC @@ -36388,18 +40479,18 @@ enum ApplicationProjectTypesOrderBy { } """ -A condition to be used against `ApplicationProjectType` object types. All fields -are tested for equality and combined with a logical ‘and.’ +A condition to be used against `Announcement` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input ApplicationProjectTypeCondition { +input AnnouncementCondition { """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 `ccbcNumbers` field.""" + ccbcNumbers: String - """Checks for equality with the object’s `projectType` field.""" - projectType: String + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON """Checks for equality with the object’s `createdBy` field.""" createdBy: Int @@ -36420,136 +40511,39 @@ input ApplicationProjectTypeCondition { archivedAt: Datetime } -"""A connection to a list of `Notification` values.""" -type NotificationsConnection { - """A list of `Notification` objects.""" - nodes: [Notification]! +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +""" +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Notification` and cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [NotificationsEdge!]! + edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Notification` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""Table containing list of application notifications""" -type Notification implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for each notification""" - rowId: Int! - - """Type of the notification""" - notificationType: String - - """ID of the application this notification belongs to""" - applicationId: Int - - """Additional data for the notification""" - jsonData: JSON! - - """Column referencing the email record""" - emailRecordId: Int - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Reads a single `Application` that is related to this `Notification`.""" - applicationByApplicationId: Application - - """Reads a single `EmailRecord` that is related to this `Notification`.""" - emailRecordByEmailRecordId: EmailRecord - - """Reads a single `CcbcUser` that is related to this `Notification`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `Notification`.""" - ccbcUserByUpdatedBy: CcbcUser +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Reads a single `CcbcUser` that is related to this `Notification`.""" - ccbcUserByArchivedBy: CcbcUser -} + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser -"""Table containing list of application email_records""" -type EmailRecord implements Node { """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. + Reads and enables pagination through a set of `ApplicationAnnouncement`. """ - id: ID! - - """Unique ID for each email sent""" - rowId: Int! - - """Email Address(es) of the recipients""" - toEmail: String - - """Email Address(es) of the CC recipients""" - ccEmail: String - - """Subject of the email""" - subject: String - - """Body of the email""" - body: String - - """Message ID of the email returned by the email server""" - messageId: String - - """Additional data for the email""" - jsonData: JSON! - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `EmailRecord`.""" - ccbcUserByArchivedBy: CcbcUser - - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36568,22 +40562,54 @@ type EmailRecord implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! +} - """Reads and enables pagination through a set of `Application`.""" - applicationsByNotificationEmailRecordIdAndApplicationId( +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +""" +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36602,22 +40628,54 @@ type EmailRecord 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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationEmailRecordIdAndCreatedBy( +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +""" +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection { + """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: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +""" +type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -36636,22 +40694,52 @@ type EmailRecord implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationEmailRecordIdAndUpdatedBy( +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +""" +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +""" +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36670,22 +40758,52 @@ type EmailRecord implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! +} - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByNotificationEmailRecordIdAndArchivedBy( +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +""" +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! + + """ + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. + """ + edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! +} + +""" +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +""" +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36704,118 +40822,52 @@ type EmailRecord implements Node { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection! -} - -"""Methods to use when ordering `Notification`.""" -enum NotificationsOrderBy { - NATURAL - ID_ASC - ID_DESC - NOTIFICATION_TYPE_ASC - NOTIFICATION_TYPE_DESC - APPLICATION_ID_ASC - APPLICATION_ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - EMAIL_RECORD_ID_ASC - EMAIL_RECORD_ID_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `Notification` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input NotificationCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `notificationType` field.""" - notificationType: String - - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `emailRecordId` field.""" - emailRecordId: Int - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `Application` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection { + """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge!]! """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 EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +""" +type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge { """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 `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -36834,32 +40886,32 @@ type EmailRecordApplicationsByNotificationEmailRecordIdAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -36868,16 +40920,20 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyConnec totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +""" +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36896,32 +40952,32 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -36930,16 +40986,20 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyConnec totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +""" +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor 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 `ProjectInformationData`. + """ + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -36958,32 +41018,32 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. """ -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -36992,16 +41052,20 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyConne totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +""" +type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge { """A cursor 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 `ProjectInformationData`. + """ + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -37020,363 +41084,314 @@ type EmailRecordCcbcUsersByNotificationEmailRecordIdAndArchivedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! -} - -"""A `Notification` edge in the connection.""" -type NotificationsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Notification` at the end of the edge.""" - node: Notification + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } -"""A connection to a list of `ApplicationPendingChangeRequest` values.""" -type ApplicationPendingChangeRequestsConnection { - """A list of `ApplicationPendingChangeRequest` objects.""" - nodes: [ApplicationPendingChangeRequest]! +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationPendingChangeRequest` and 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: [ApplicationPendingChangeRequestsEdge!]! + edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationPendingChangeRequest` you could get from the connection. - """ + """The count of *all* `CcbcUser` 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 +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """ - Column containing the comment for the change request or completion of the change request - """ - comment: String + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """created by user id""" - createdBy: Int + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """created at timestamp""" - createdAt: Datetime! + """Only read the last `n` values of the set.""" + last: Int - """updated by user id""" - updatedBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """updated at timestamp""" - updatedAt: Datetime! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """archived by user id""" - archivedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """archived at timestamp""" - archivedAt: Datetime + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] - """ - Reads a single `Application` that is related to this `ApplicationPendingChangeRequest`. - """ - applicationByApplicationId: Application + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ChangeRequestDataCondition - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByCreatedBy: CcbcUser + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! +} - """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. - """ - ccbcUserByUpdatedBy: CcbcUser +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Reads a single `CcbcUser` that is related to this `ApplicationPendingChangeRequest`. + A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. """ - ccbcUserByArchivedBy: CcbcUser -} - -"""A `ApplicationPendingChangeRequest` edge in the connection.""" -type ApplicationPendingChangeRequestsEdge { - """A cursor for use in pagination.""" - cursor: Cursor + edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyEdge!]! - """The `ApplicationPendingChangeRequest` at the end of the edge.""" - node: ApplicationPendingChangeRequest -} + """Information to aid in pagination.""" + pageInfo: PageInfo! -"""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 + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } """ -A condition to be used against `ApplicationPendingChangeRequest` object types. -All fields are tested for equality and combined with a logical ‘and.’ +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. """ -input ApplicationPendingChangeRequestCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Checks for equality with the object’s `applicationId` field.""" - applicationId: Int + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Checks for equality with the object’s `isPending` field.""" - isPending: Boolean + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `comment` field.""" - comment: String + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ChangeRequestDataCondition - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""A connection to a list of `Announcement` values.""" -type AnnouncementsConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Announcement` and 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: [AnnouncementsEdge!]! + edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyEdge!]! """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.""" -type AnnouncementsEdge { +""" +A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +""" +type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement -} - -"""A connection to a list of `HistoryItem` values.""" -type HistoryItemsConnection { - """A list of `HistoryItem` objects.""" - nodes: [HistoryItem]! - - """ - A list of edges which contains the `HistoryItem` and cursor to aid in pagination. - """ - edges: [HistoryItemsEdge!]! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( + """Only read the first `n` values of the set.""" + first: Int - """The count of *all* `HistoryItem` you could get from the connection.""" - totalCount: Int! -} + """Only read the last `n` values of the set.""" + last: Int -""" -This is a type used to return records of history data in the application_history computed column -""" -type HistoryItem { - """Application Id.""" - applicationId: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Timestamp of the operation recorded.""" - createdAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Type of operation: INSERT/UPDATE/DELETE/TRUNCATE/SNAPSHOT.""" - op: Operation + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Table name.""" - tableName: String + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] - """ - Identifier that uniquely identifies a record by primary key [primary key + table_oid]. - """ - recordId: UUID + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ChangeRequestDataCondition - """New record in Json format.""" - record: JSON + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! +} - """Old record in Json format.""" - oldRecord: JSON +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +""" +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - Main object affected by the operation (i.e. status, or file name or RFI type). + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - item: String - - """First Name of the user who performed the operation.""" - familyName: String - - """Last Name of the user who performed the operation.""" - givenName: String - - """Session sub of the user who performed the operation.""" - sessionSub: String - - """User is an external analyst""" - externalAnalyst: Boolean -} + edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge!]! -"""A `HistoryItem` edge in the connection.""" -type HistoryItemsEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Information to aid in pagination.""" + pageInfo: PageInfo! - """The `HistoryItem` at the end of the edge.""" - node: HistoryItem + """The count of *all* `CcbcUser` you could get from the connection.""" + totalCount: Int! } """ -A filter to be used against `HistoryItem` object types. All fields are combined with a logical ‘and.’ +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -input HistoryItemFilter { - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `createdAt` field.""" - createdAt: DatetimeFilter - - """Filter by the object’s `op` field.""" - op: OperationFilter - - """Filter by the object’s `tableName` field.""" - tableName: StringFilter - - """Filter by the object’s `recordId` field.""" - recordId: UUIDFilter - - """Filter by the object’s `record` field.""" - record: JSONFilter +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge { + """A cursor for use in pagination.""" + cursor: Cursor - """Filter by the object’s `oldRecord` field.""" - oldRecord: JSONFilter + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Filter by the object’s `item` field.""" - item: StringFilter + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Filter by the object’s `familyName` field.""" - familyName: StringFilter + """Only read the last `n` values of the set.""" + last: Int - """Filter by the object’s `givenName` field.""" - givenName: StringFilter + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Filter by the object’s `sessionSub` field.""" - sessionSub: StringFilter + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Filter by the object’s `externalAnalyst` field.""" - externalAnalyst: BooleanFilter + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for all expressions in this list.""" - and: [HistoryItemFilter!] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for any expressions in this list.""" - or: [HistoryItemFilter!] + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCommunityProgressReportDataCondition - """Negates the expression.""" - not: HistoryItemFilter + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatusType` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37395,70 +41410,34 @@ type ApplicationApplicationStatusTypesByApplicationStatusApplicationIdAndStatusM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! -} - -"""Methods to use when ordering `ApplicationStatusType`.""" -enum ApplicationStatusTypesOrderBy { - NATURAL - NAME_ASC - NAME_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - VISIBLE_BY_APPLICANT_ASC - VISIBLE_BY_APPLICANT_DESC - STATUS_ORDER_ASC - STATUS_ORDER_DESC - VISIBLE_BY_ANALYST_ASC - VISIBLE_BY_ANALYST_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `ApplicationStatusType` object types. All fields -are tested for equality and combined with a logical ‘and.’ -""" -input ApplicationStatusTypeCondition { - """Checks for equality with the object’s `name` field.""" - name: String - - """Checks for equality with the object’s `description` field.""" - description: String - - """Checks for equality with the object’s `visibleByApplicant` field.""" - visibleByApplicant: Boolean - - """Checks for equality with the object’s `statusOrder` field.""" - statusOrder: Int - - """Checks for equality with the object’s `visibleByAnalyst` field.""" - visibleByAnalyst: Boolean + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -37468,17 +41447,19 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -37497,32 +41478,34 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -37532,17 +41515,19 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37561,32 +41546,32 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndArchivedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -37596,17 +41581,19 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37625,54 +41612,54 @@ type ApplicationCcbcUsersByApplicationStatusApplicationIdAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationStatus` edge in the connection, with data from `Attachment`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatusIdManyToManyEdge { +type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -37691,32 +41678,32 @@ type ApplicationApplicationStatusesByAttachmentApplicationIdAndApplicationStatus """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -37725,16 +41712,18 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyConnecti totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +""" +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37753,32 +41742,32 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -37787,16 +41776,18 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyConnecti totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +""" +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37815,32 +41806,32 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -37849,16 +41840,18 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyConnect totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +""" +type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -37877,84 +41870,120 @@ type ApplicationCcbcUsersByAttachmentApplicationIdAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `FormData` values, with data from `ApplicationFormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyConnection { - """A list of `FormData` objects.""" - nodes: [FormData]! +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `FormData`, info from the `ApplicationFormData`, 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: [ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `FormData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `FormData` edge in the connection, with data from `ApplicationFormData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type ApplicationFormDataByApplicationFormDataApplicationIdAndFormDataIdManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormData` at the end of the edge.""" - node: FormData + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser + + """ + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + """ + applicationClaimsExcelDataByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int + + """Only read the last `n` values of the set.""" + last: Int + + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int + + """Read all values in the set before (above) this cursor.""" + before: Cursor + + """Read all values in the set after (below) this cursor.""" + after: Cursor + + """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: ApplicationClaimsExcelDataCondition + + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationAnalystLeadsByAnalystId( + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -37973,99 +42002,32 @@ type ApplicationAnalystsByApplicationAnalystLeadApplicationIdAndAnalystIdManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! -} - -"""Methods to use when ordering `Analyst`.""" -enum AnalystsOrderBy { - NATURAL - ID_ASC - ID_DESC - GIVEN_NAME_ASC - GIVEN_NAME_DESC - FAMILY_NAME_ASC - FAMILY_NAME_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - ACTIVE_ASC - ACTIVE_DESC - EMAIL_ASC - EMAIL_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `Analyst` object types. All fields are tested for equality and combined with a logical ‘and.’ -""" -input AnalystCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `givenName` field.""" - givenName: String - - """Checks for equality with the object’s `familyName` field.""" - familyName: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime - - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int - - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime - - """Checks for equality with the object’s `active` field.""" - active: Boolean - - """Checks for equality with the object’s `email` field.""" - email: String + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38075,9 +42037,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -38085,9 +42047,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationAnalystLeadsByCreatedBy( + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -38106,32 +42068,32 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38141,9 +42103,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -38151,9 +42113,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnalystLeadsByUpdatedBy( + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38172,32 +42134,32 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38207,9 +42169,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -38217,9 +42179,9 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - applicationAnalystLeadsByArchivedBy( + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38238,82 +42200,54 @@ type ApplicationCcbcUsersByApplicationAnalystLeadApplicationIdAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `RfiData` values, with data from `ApplicationRfiData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyConnection { - """A list of `RfiData` objects.""" - nodes: [RfiData]! +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `RfiData`, info from the `ApplicationRfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `RfiData` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `RfiData` edge in the connection, with data from `ApplicationRfiData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type ApplicationRfiDataByApplicationRfiDataApplicationIdAndRfiDataIdManyToManyEdge { +type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `RfiData` at the end of the edge.""" - node: RfiData -} - -""" -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. -""" -type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + Reads and enables pagination through a set of `ApplicationMilestoneData`. """ - edges: [ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `AssessmentType` you could get from the connection.""" - totalCount: Int! -} - -""" -A `AssessmentType` edge in the connection, with data from `AssessmentData`. -""" -type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTypeManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType - - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -38332,55 +42266,32 @@ type ApplicationAssessmentTypesByAssessmentDataApplicationIdAndAssessmentDataTyp """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! -} - -"""Methods to use when ordering `AssessmentType`.""" -enum AssessmentTypesOrderBy { - NATURAL - NAME_ASC - NAME_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `AssessmentType` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input AssessmentTypeCondition { - """Checks for equality with the object’s `name` field.""" - name: String - - """Checks for equality with the object’s `description` field.""" - description: String + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38389,16 +42300,20 @@ type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyConn totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +""" +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38417,32 +42332,32 @@ type ApplicationCcbcUsersByAssessmentDataApplicationIdAndCreatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38451,16 +42366,20 @@ type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyConn totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +""" +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38479,32 +42398,32 @@ type ApplicationCcbcUsersByAssessmentDataApplicationIdAndUpdatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38513,16 +42432,20 @@ type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyCon totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +""" +type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + """ + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -38541,32 +42464,32 @@ type ApplicationCcbcUsersByAssessmentDataApplicationIdAndArchivedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38576,17 +42499,19 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38605,32 +42530,32 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndCreatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38640,17 +42565,19 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38669,32 +42596,32 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndUpdatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38704,17 +42631,19 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationInternalDescription`. + """ + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -38733,32 +42662,32 @@ type ApplicationCcbcUsersByApplicationPackageApplicationIdAndArchivedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38768,9 +42697,9 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -38778,9 +42707,9 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - conditionalApprovalDataByCreatedBy( + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38799,32 +42728,32 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndCreatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38834,9 +42763,9 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -38844,9 +42773,9 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - conditionalApprovalDataByUpdatedBy( + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -38865,32 +42794,32 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndUpdatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -38900,9 +42829,9 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByMany } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -38910,9 +42839,9 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByMany node: CcbcUser """ - Reads and enables pagination through a set of `ConditionalApprovalData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - conditionalApprovalDataByArchivedBy( + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -38931,52 +42860,50 @@ type ApplicationCcbcUsersByConditionalApprovalDataApplicationIdAndArchivedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - 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 `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge!]! + edges: [ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -""" -A `GisData` edge in the connection, with data from `ApplicationGisData`. -""" -type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -38995,26 +42922,36 @@ type ApplicationGisDataByApplicationGisDataApplicationIdAndBatchIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } -"""Methods to use when ordering `GisData`.""" -enum GisDataOrderBy { +"""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 @@ -39034,12 +42971,28 @@ enum GisDataOrderBy { } """ -A condition to be used against `GisData` object types. All fields are tested for equality and combined with a logical ‘and.’ +A condition to be used against `EmailRecord` object types. All fields are tested +for equality and combined with a logical ‘and.’ """ -input GisDataCondition { +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 @@ -39063,16 +43016,16 @@ input GisDataCondition { } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39081,18 +43034,16 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToManyEdge { +"""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 `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39111,32 +43062,32 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndCreatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39145,18 +43096,16 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToManyEdge { +"""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 `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39175,32 +43124,32 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndUpdatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyConnection { +type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39209,18 +43158,16 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. -""" -type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToManyEdge { +"""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 `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -39239,146 +43186,98 @@ type ApplicationCcbcUsersByApplicationGisDataApplicationIdAndArchivedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection { + """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge!]! """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 `ApplicationPendingChangeRequest`. """ -type ApplicationAnnouncementsByApplicationAnnouncementApplicationIdAndAnnouncementIdManyToManyEdge { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Flag to identify either announcement is primary or secondary""" - isPrimary: Boolean + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser """ - Column describing the operation (created, updated, deleted) for context on the history page + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - historyOperation: String -} - -"""Methods to use when ordering `Announcement`.""" -enum AnnouncementsOrderBy { - NATURAL - ID_ASC - ID_DESC - CCBC_NUMBERS_ASC - CCBC_NUMBERS_DESC - JSON_DATA_ASC - JSON_DATA_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `Announcement` object types. All fields are -tested for equality and combined with a logical ‘and.’ -""" -input AnnouncementCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `ccbcNumbers` field.""" - ccbcNumbers: String + applicationPendingChangeRequestsByCreatedBy( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON + """Only read the last `n` values of the set.""" + last: Int - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int + """Read all values in the set after (below) this cursor.""" + after: Cursor - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationPendingChangeRequestCondition - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39388,9 +43287,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -39398,9 +43297,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationAnnouncementsByCreatedBy( + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39419,32 +43318,32 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndCreatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyConnection { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39454,9 +43353,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyToManyEdge { +type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -39464,9 +43363,9 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. """ - applicationAnnouncementsByUpdatedBy( + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -39485,32 +43384,41 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndUpdatedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! +} + +"""A `Application` edge in the connection.""" +type ApplicationsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Application` at the end of the edge.""" + node: Application } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyConnection { +type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection { """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 `Application`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge!]! + edges: [IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39519,20 +43427,16 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39551,32 +43455,32 @@ type ApplicationCcbcUsersByApplicationAnnouncementApplicationIdAndArchivedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyConnection { +type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection { """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 `Application`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39585,18 +43489,16 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. -""" -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -39615,32 +43517,32 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndCreatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 - ): ApplicationSowDataConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyConnection { +type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection { """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 `Application`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -39649,18 +43551,16 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. -""" -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -39679,250 +43579,424 @@ type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndUpdatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 - ): ApplicationSowDataConnection! + filter: ApplicationFilter + ): ApplicationsConnection! +} + +"""A `Intake` edge in the connection.""" +type IntakesEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Intake` at the end of the edge.""" + node: Intake +} + +"""A connection to a list of `RecordVersion` values.""" +type RecordVersionsConnection { + """A list of `RecordVersion` objects.""" + nodes: [RecordVersion]! + + """ + A list of edges which contains the `RecordVersion` and cursor to aid in pagination. + """ + edges: [RecordVersionsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `RecordVersion` you could get from the connection.""" + totalCount: Int! +} + +""" +Table for tracking history records on tables that auditing is enabled on +""" +type RecordVersion implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Primary key and unique identifier""" + rowId: BigInt! + + """The id of the record the history record is associated with""" + recordId: UUID + + """ + The id of the previous version of the record the history record is associated with + """ + oldRecordId: UUID + + """The operation performed on the record (created, updated, deleted)""" + op: Operation! + + """The timestamp of the history record""" + ts: Datetime! + + """The oid of the table the record is associated with""" + tableOid: BigFloat! + + """The schema of the table the record is associated with""" + tableSchema: String! + + """The name of the table the record is associated with""" + tableName: String! + + """The user that created the record""" + createdBy: Int + + """The timestamp of when the record was created""" + createdAt: Datetime! + + """The record in JSON format""" + record: JSON + + """The previous version of the record in JSON format""" + oldRecord: JSON + + """Reads a single `CcbcUser` that is related to this `RecordVersion`.""" + ccbcUserByCreatedBy: CcbcUser +} + +"""A `RecordVersion` edge in the connection.""" +type RecordVersionsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `RecordVersion` at the end of the edge.""" + node: RecordVersion +} + +"""Methods to use when ordering `RecordVersion`.""" +enum RecordVersionsOrderBy { + NATURAL + ID_ASC + ID_DESC + RECORD_ID_ASC + RECORD_ID_DESC + OLD_RECORD_ID_ASC + OLD_RECORD_ID_DESC + OP_ASC + OP_DESC + TS_ASC + TS_DESC + TABLE_OID_ASC + TABLE_OID_DESC + TABLE_SCHEMA_ASC + TABLE_SCHEMA_DESC + TABLE_NAME_ASC + TABLE_NAME_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + RECORD_ASC + RECORD_DESC + OLD_RECORD_ASC + OLD_RECORD_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} + +""" +A condition to be used against `RecordVersion` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input RecordVersionCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: BigInt + + """Checks for equality with the object’s `recordId` field.""" + recordId: UUID + + """Checks for equality with the object’s `oldRecordId` field.""" + oldRecordId: UUID + + """Checks for equality with the object’s `op` field.""" + op: Operation + + """Checks for equality with the object’s `ts` field.""" + ts: Datetime + + """Checks for equality with the object’s `tableOid` field.""" + tableOid: BigFloat + + """Checks for equality with the object’s `tableSchema` field.""" + tableSchema: String + + """Checks for equality with the object’s `tableName` field.""" + tableName: String + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `record` field.""" + record: JSON + + """Checks for equality with the object’s `oldRecord` field.""" + oldRecord: JSON +} + +"""A connection to a list of `GisData` values.""" +type GisDataConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! + + """ + A list of edges which contains the `GisData` and cursor to aid in pagination. + """ + edges: [GisDataEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `GisData` you could get from the connection.""" + totalCount: Int! +} + +"""A `GisData` edge in the connection.""" +type GisDataEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `GisData` at the end of the edge.""" + node: GisData +} + +"""A connection to a list of `CbcProject` values.""" +type CbcProjectsConnection { + """A list of `CbcProject` objects.""" + nodes: [CbcProject]! + + """ + A list of edges which contains the `CbcProject` and cursor to aid in pagination. + """ + edges: [CbcProjectsEdge!]! + + """Information to aid in pagination.""" + pageInfo: PageInfo! + + """The count of *all* `CbcProject` you could get from the connection.""" + totalCount: Int! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. -""" -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""Table containing the data imported from the CBC projects excel file""" +type CbcProject implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! + + """Unique ID for the row""" + rowId: Int! + + """The data imported from the excel for that cbc project""" + jsonData: JSON! + + """The timestamp of the last time the data was updated from sharepoint""" + sharepointTimestamp: Datetime + + """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 - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. - """ - edges: [ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge!]! + """Reads a single `CcbcUser` that is related to this `CbcProject`.""" + ccbcUserByCreatedBy: CcbcUser - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Reads a single `CcbcUser` that is related to this `CbcProject`.""" + ccbcUserByUpdatedBy: CcbcUser - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """Reads a single `CcbcUser` that is related to this `CbcProject`.""" + ccbcUserByArchivedBy: CcbcUser } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. -""" -type ApplicationCcbcUsersByApplicationSowDataApplicationIdAndArchivedByManyToManyEdge { +"""A `CbcProject` edge in the connection.""" +type CbcProjectsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `CbcProject` at the end of the edge.""" + node: CbcProject +} - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( - """Only read the first `n` values of the set.""" - first: Int +"""Methods to use when ordering `CbcProject`.""" +enum CbcProjectsOrderBy { + NATURAL + ID_ASC + ID_DESC + JSON_DATA_ASC + JSON_DATA_DESC + SHAREPOINT_TIMESTAMP_ASC + SHAREPOINT_TIMESTAMP_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `CbcProject` object types. All fields are tested +for equality and combined with a logical ‘and.’ +""" +input CbcProjectCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: Datetime - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationSowDataCondition + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + """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 `ProjectInformationData`. -""" -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `EmailRecord` values.""" +type EmailRecordsConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `EmailRecord` and cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [EmailRecordsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. -""" -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndCreatedByManyToManyEdge { +"""A `EmailRecord` edge in the connection.""" +type EmailRecordsEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """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: ProjectInformationDataCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord } -""" -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. -""" -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values.""" +type CbcsConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc` and cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [CbcsEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +Table containing the data imported from the CBC projects excel file, by rows """ -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - +type Cbc implements Node { """ - Reads and enables pagination through a set of `ProjectInformationData`. + A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ - projectInformationDataByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int + id: ID! - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Unique ID for the row""" + rowId: Int! - """Read all values in the set before (above) this cursor.""" - before: Cursor + """The project number, unique for each project""" + projectNumber: Int! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """The timestamp of the last time the data was updated from sharepoint""" + sharepointTimestamp: Datetime - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """created by user id""" + createdBy: Int - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ProjectInformationDataCondition + """created at timestamp""" + createdAt: Datetime! - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! -} + """updated by user id""" + updatedBy: Int -""" -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. -""" -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """updated at timestamp""" + updatedAt: Datetime! - """ - A list of edges which contains the `CcbcUser`, info from the `ProjectInformationData`, and the cursor to aid in pagination. - """ - edges: [ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge!]! + """archived by user id""" + archivedBy: Int - """Information to aid in pagination.""" - pageInfo: PageInfo! + """archived at timestamp""" + archivedAt: Datetime - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! -} + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByCreatedBy: CcbcUser -""" -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. -""" -type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByUpdatedBy: CcbcUser - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByArchivedBy: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -39941,52 +44015,22 @@ type ApplicationCcbcUsersByProjectInformationDataApplicationIdAndArchivedByManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. -""" -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyConnection { - """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: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge!]! - - """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 `ChangeRequestData`. -""" -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CbcDataFilter + ): CbcDataConnection! - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -40005,52 +44049,22 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. -""" -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyConnection { - """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: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyEdge!]! + filter: CbcDataFilter + ): CbcDataConnection! - """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 `ChangeRequestData`. -""" -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataCbcIdAndProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -40069,52 +44083,22 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. -""" -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + filter: CbcFilter + ): CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection! - """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. - """ - edges: [ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyEdge!]! - - """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 `ChangeRequestData`. -""" -type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataCbcIdAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40133,54 +44117,22 @@ type ApplicationCcbcUsersByChangeRequestDataApplicationIdAndArchivedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. -""" -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyConnection { - """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: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge!]! - - """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 ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataCbcIdAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40199,56 +44151,22 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. -""" -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyConnection { - """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: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge!]! - - """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 ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataCbcIdAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -40267,56 +44185,22 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. -""" -type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyConnection { - """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: [ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge!]! - - """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 ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCbcDataProjectNumberAndCbcId( """Only read the first `n` values of the set.""" first: Int @@ -40335,56 +44219,22 @@ type ApplicationCcbcUsersByApplicationCommunityProgressReportDataApplicationIdAn """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: CbcCondition """ 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 `ApplicationCommunityReportExcelData`. -""" -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyConnection { - """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: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge!]! - - """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 `ApplicationCommunityReportExcelData`. -""" -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CbcFilter + ): CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataProjectNumberAndCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40403,54 +44253,22 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndCr """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. -""" -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyConnection { - """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: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! - - """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 `ApplicationCommunityReportExcelData`. -""" -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataProjectNumberAndUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40469,54 +44287,22 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndUp """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! -} - -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. -""" -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyConnection { - """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: [ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge!]! - - """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 `ApplicationCommunityReportExcelData`. -""" -type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndArchivedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + filter: CcbcUserFilter + ): CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyConnection! - """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. - """ - applicationCommunityReportExcelDataByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCbcDataProjectNumberAndArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -40535,180 +44321,193 @@ type ApplicationCcbcUsersByApplicationCommunityReportExcelDataApplicationIdAndAr """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: CcbcUserFilter + ): CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. -""" -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `CbcData` values.""" +type CbcDataConnection { + """A list of `CbcData` objects.""" + nodes: [CbcData]! """ - 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 `CbcData` and cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [CbcDataEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `CbcData` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. -""" -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndCreatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor +"""Table containing the json data for cbc applications""" +type CbcData implements Node { + """ + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + """ + id: ID! - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """Unique ID for the cbc_data""" + rowId: Int! - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( - """Only read the first `n` values of the set.""" - first: Int + """ID of the cbc application this cbc_data belongs to""" + cbcId: Int - """Only read the last `n` values of the set.""" - last: Int + """Column containing the project number the cbc application is from""" + projectNumber: Int + jsonData: JSON! + sharepointTimestamp: Datetime - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """created by user id""" + createdBy: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """created at timestamp""" + createdAt: Datetime! - """Read all values in the set after (below) this cursor.""" - after: Cursor + """updated by user id""" + updatedBy: Int - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """updated at timestamp""" + updatedAt: Datetime! - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationClaimsDataCondition + """archived by user id""" + archivedBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! -} + """archived at timestamp""" + archivedAt: Datetime -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. -""" -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! + """Reads a single `Cbc` that is related to this `CbcData`.""" + cbcByCbcId: Cbc - """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. - """ - edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge!]! + """Reads a single `Cbc` that is related to this `CbcData`.""" + cbcByProjectNumber: Cbc - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByCreatedBy: CcbcUser - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByArchivedBy: CcbcUser } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. -""" -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndUpdatedByManyToManyEdge { +"""A `CbcData` edge in the connection.""" +type CbcDataEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `CbcData` at the end of the edge.""" + node: CbcData +} - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int +"""Methods to use when ordering `CbcData`.""" +enum CbcDataOrderBy { + NATURAL + ID_ASC + ID_DESC + CBC_ID_ASC + CBC_ID_DESC + PROJECT_NUMBER_ASC + PROJECT_NUMBER_DESC + JSON_DATA_ASC + JSON_DATA_DESC + SHAREPOINT_TIMESTAMP_ASC + SHAREPOINT_TIMESTAMP_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """Only read the last `n` values of the set.""" - last: Int +""" +A condition to be used against `CbcData` object types. All fields are tested for equality and combined with a logical ‘and.’ +""" +input CbcDataCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int + """Checks for equality with the object’s `cbcId` field.""" + cbcId: Int - """Read all values in the set before (above) this cursor.""" - before: Cursor + """Checks for equality with the object’s `projectNumber` field.""" + projectNumber: Int - """Read all values in the set after (below) this cursor.""" - after: Cursor + """Checks for equality with the object’s `jsonData` field.""" + jsonData: JSON - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """Checks for equality with the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: Datetime - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationClaimsDataCondition + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + """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 `ApplicationClaimsData`. -""" -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. -""" -type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CbcCbcsByCbcDataCbcIdAndProjectNumberManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -40727,32 +44526,87 @@ type ApplicationCcbcUsersByApplicationClaimsDataApplicationIdAndArchivedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: CbcDataFilter + ): CbcDataConnection! +} + +"""Methods to use when ordering `Cbc`.""" +enum CbcsOrderBy { + NATURAL + ID_ASC + ID_DESC + PROJECT_NUMBER_ASC + PROJECT_NUMBER_DESC + SHAREPOINT_TIMESTAMP_ASC + SHAREPOINT_TIMESTAMP_DESC + CREATED_BY_ASC + CREATED_BY_DESC + CREATED_AT_ASC + CREATED_AT_DESC + UPDATED_BY_ASC + UPDATED_BY_DESC + UPDATED_AT_ASC + UPDATED_AT_DESC + ARCHIVED_BY_ASC + ARCHIVED_BY_DESC + ARCHIVED_AT_ASC + ARCHIVED_AT_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A condition to be used against `Cbc` object types. All fields are tested for equality and combined with a logical ‘and.’ """ -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyConnection { +input CbcCondition { + """Checks for equality with the object’s `rowId` field.""" + rowId: Int + + """Checks for equality with the object’s `projectNumber` field.""" + projectNumber: Int + + """Checks for equality with the object’s `sharepointTimestamp` field.""" + sharepointTimestamp: Datetime + + """Checks for equality with the object’s `createdBy` field.""" + createdBy: Int + + """Checks for equality with the object’s `createdAt` field.""" + createdAt: Datetime + + """Checks for equality with the object’s `updatedBy` field.""" + updatedBy: Int + + """Checks for equality with the object’s `updatedAt` field.""" + updatedAt: Datetime + + """Checks for equality with the object’s `archivedBy` field.""" + archivedBy: Int + + """Checks for equality with the object’s `archivedAt` field.""" + archivedAt: Datetime +} + +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40761,20 +44615,16 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataCbcIdAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40793,32 +44643,30 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndCreatedByMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. -""" -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40827,20 +44675,16 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByMa totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataCbcIdAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -40859,32 +44703,30 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndUpdatedByMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. -""" -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -40893,20 +44735,16 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByM totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. -""" -type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataCbcIdAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. - """ - applicationClaimsExcelDataByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -40925,54 +44763,48 @@ type ApplicationCcbcUsersByApplicationClaimsExcelDataApplicationIdAndArchivedByM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. -""" -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. -""" -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CbcCbcsByCbcDataProjectNumberAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -40991,32 +44823,30 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndCreatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. -""" -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41025,20 +44855,16 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. -""" -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41057,32 +44883,30 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndUpdatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. -""" -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41091,20 +44915,16 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. -""" -type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41123,32 +44943,30 @@ type ApplicationCcbcUsersByApplicationMilestoneDataApplicationIdAndArchivedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. -""" -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge!]! + edges: [CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41157,20 +44975,16 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedB totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. -""" -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CbcCcbcUsersByCbcDataProjectNumberAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -41189,32 +45003,41 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndCreatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: CbcDataFilter + ): CbcDataConnection! +} + +"""A `Cbc` edge in the connection.""" +type CbcsEdge { + """A cursor for use in pagination.""" + cursor: Cursor + + """The `Cbc` at the end of the edge.""" + node: Cbc } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection { """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 `CcbcUser`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41223,20 +45046,16 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedB totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. -""" -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41255,32 +45074,32 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndUpdatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection { """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 `CcbcUser`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41289,20 +45108,16 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchived totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. -""" -type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. - """ - applicationMilestoneExcelDataByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -41321,32 +45136,32 @@ type ApplicationCcbcUsersByApplicationMilestoneExcelDataApplicationIdAndArchived """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { """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 `CcbcUser`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41355,20 +45170,16 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreated totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41387,32 +45198,32 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndCreated """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection { """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 `CcbcUser`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41421,20 +45232,16 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdated totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByUpdatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -41453,32 +45260,32 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndUpdated """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection { """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 `CcbcUser`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41487,20 +45294,16 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchive totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByArchivedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41519,32 +45322,32 @@ type ApplicationCcbcUsersByApplicationInternalDescriptionApplicationIdAndArchive """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `CcbcUser`. """ -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { """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 `CcbcUser`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41553,20 +45356,16 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyTo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" +type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `CcbcUser`.""" + ccbcUsersByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41585,32 +45384,30 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndCreatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CcbcUser`.""" + orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: CcbcUserCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: CcbcUserFilter + ): CcbcUsersConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. -""" -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41619,20 +45416,16 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyTo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41651,32 +45444,30 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndUpdatedByManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. -""" -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41685,20 +45476,16 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyT totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -41717,50 +45504,50 @@ type ApplicationCcbcUsersByApplicationProjectTypeApplicationIdAndArchivedByManyT """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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationProjectTypeCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationProjectTypeFilter - ): ApplicationProjectTypesConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `EmailRecord` values, with data from `Notification`. +A connection to a list of `GaplessCounter` values, with data from `Intake`. """ -type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection { + """A list of `GaplessCounter` objects.""" + nodes: [GaplessCounter]! """ - 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 `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `GaplessCounter` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToManyEdge { +"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" +type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `GaplessCounter` at the end of the edge.""" + node: GaplessCounter - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( """Only read the first `n` values of the set.""" first: Int @@ -41779,110 +45566,53 @@ type ApplicationEmailRecordsByNotificationApplicationIdAndEmailRecordIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: IntakeFilter + ): IntakesConnection! } -"""Methods to use when ordering `EmailRecord`.""" -enum EmailRecordsOrderBy { +"""Methods to use when ordering `GaplessCounter`.""" +enum GaplessCountersOrderBy { 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 + COUNTER_ASC + COUNTER_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.’ +A condition to be used against `GaplessCounter` object types. All fields are +tested for equality and combined with a logical ‘and.’ """ -input EmailRecordCondition { +input GaplessCounterCondition { """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 + """Checks for equality with the object’s `counter` field.""" + counter: Int } -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByNotificationApplicationIdAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41891,16 +45621,16 @@ 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 `Intake`.""" +type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -41919,32 +45649,30 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByNotificationApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -41953,16 +45681,16 @@ 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 `Intake`.""" +type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -41981,50 +45709,50 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Notification`. +A connection to a list of `GaplessCounter` values, with data from `Intake`. """ -type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection { + """A list of `GaplessCounter` objects.""" + nodes: [GaplessCounter]! """ - 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 `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge!]! + edges: [CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `GaplessCounter` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type ApplicationCcbcUsersByNotificationApplicationIdAndArchivedByManyToManyEdge { +"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" +type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `GaplessCounter` at the end of the edge.""" + node: GaplessCounter - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( """Only read the first `n` values of the set.""" first: Int @@ -42043,32 +45771,30 @@ 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 `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. -""" -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42077,20 +45803,16 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreate totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42109,32 +45831,30 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndCreate """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: IntakeFilter + ): IntakesConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. -""" -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42143,20 +45863,16 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdate totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Intake`.""" +type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42175,54 +45891,50 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndUpdate """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. +A connection to a list of `GaplessCounter` values, with data from `Intake`. """ -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection { + """A list of `GaplessCounter` objects.""" + nodes: [GaplessCounter]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. """ - edges: [ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge!]! + edges: [CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `GaplessCounter` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchivedByManyToManyEdge { +"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" +type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `GaplessCounter` at the end of the edge.""" + node: GaplessCounter - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `Intake`.""" + intakesByCounterId( """Only read the first `n` values of the set.""" first: Int @@ -42241,59 +45953,50 @@ type ApplicationCcbcUsersByApplicationPendingChangeRequestApplicationIdAndArchiv """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Intake`.""" + orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: IntakeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! -} - -"""A `Application` edge in the connection.""" -type ApplicationsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Application` at the end of the edge.""" - node: Application + filter: IntakeFilter + ): IntakesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `Intake` values, with data from `Application`. """ -type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge!]! + edges: [CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Intake` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge { +"""A `Intake` edge in the connection, with data from `Application`.""" +type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Intake` at the end of the edge.""" + node: Intake """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + applicationsByIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -42330,14 +46033,14 @@ type IntakeCcbcUsersByApplicationIntakeIdAndCreatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `Application`. """ -type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42347,7 +46050,7 @@ type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `Application`.""" -type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -42392,14 +46095,14 @@ type IntakeCcbcUsersByApplicationIntakeIdAndUpdatedByManyToManyEdge { """ A connection to a list of `CcbcUser` values, with data from `Application`. """ -type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42409,7 +46112,7 @@ type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyConnection { } """A `CcbcUser` edge in the connection, with data from `Application`.""" -type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -42451,356 +46154,79 @@ type IntakeCcbcUsersByApplicationIntakeIdAndArchivedByManyToManyEdge { ): ApplicationsConnection! } -"""A `Intake` edge in the connection.""" -type IntakesEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Intake` at the end of the edge.""" - node: Intake -} - -"""A connection to a list of `RecordVersion` values.""" -type RecordVersionsConnection { - """A list of `RecordVersion` objects.""" - nodes: [RecordVersion]! - - """ - A list of edges which contains the `RecordVersion` and cursor to aid in pagination. - """ - edges: [RecordVersionsEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `RecordVersion` you could get from the connection.""" - totalCount: Int! -} - -""" -Table for tracking history records on tables that auditing is enabled on -""" -type RecordVersion implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Primary key and unique identifier""" - rowId: BigInt! - - """The id of the record the history record is associated with""" - recordId: UUID - - """ - The id of the previous version of the record the history record is associated with - """ - oldRecordId: UUID - - """The operation performed on the record (created, updated, deleted)""" - op: Operation! - - """The timestamp of the history record""" - ts: Datetime! - - """The oid of the table the record is associated with""" - tableOid: BigFloat! - - """The schema of the table the record is associated with""" - tableSchema: String! - - """The name of the table the record is associated with""" - tableName: String! - - """The user that created the record""" - createdBy: Int - - """The timestamp of when the record was created""" - createdAt: Datetime! - - """The record in JSON format""" - record: JSON - - """The previous version of the record in JSON format""" - oldRecord: JSON - - """Reads a single `CcbcUser` that is related to this `RecordVersion`.""" - ccbcUserByCreatedBy: CcbcUser -} - -"""A `RecordVersion` edge in the connection.""" -type RecordVersionsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `RecordVersion` at the end of the edge.""" - node: RecordVersion -} - -"""Methods to use when ordering `RecordVersion`.""" -enum RecordVersionsOrderBy { - NATURAL - ID_ASC - ID_DESC - RECORD_ID_ASC - RECORD_ID_DESC - OLD_RECORD_ID_ASC - OLD_RECORD_ID_DESC - OP_ASC - OP_DESC - TS_ASC - TS_DESC - TABLE_OID_ASC - TABLE_OID_DESC - TABLE_SCHEMA_ASC - TABLE_SCHEMA_DESC - TABLE_NAME_ASC - TABLE_NAME_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - RECORD_ASC - RECORD_DESC - OLD_RECORD_ASC - OLD_RECORD_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - """ -A condition to be used against `RecordVersion` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A connection to a list of `Intake` values, with data from `Application`. """ -input RecordVersionCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: BigInt - - """Checks for equality with the object’s `recordId` field.""" - recordId: UUID - - """Checks for equality with the object’s `oldRecordId` field.""" - oldRecordId: UUID - - """Checks for equality with the object’s `op` field.""" - op: Operation - - """Checks for equality with the object’s `ts` field.""" - ts: Datetime - - """Checks for equality with the object’s `tableOid` field.""" - tableOid: BigFloat - - """Checks for equality with the object’s `tableSchema` field.""" - tableSchema: String - - """Checks for equality with the object’s `tableName` field.""" - tableName: String - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `record` field.""" - record: JSON - - """Checks for equality with the object’s `oldRecord` field.""" - oldRecord: JSON -} - -"""A connection to a list of `GisData` values.""" -type GisDataConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! - - """ - A list of edges which contains the `GisData` and cursor to aid in pagination. - """ - edges: [GisDataEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `GisData` you could get from the connection.""" - totalCount: Int! -} - -"""A `GisData` edge in the connection.""" -type GisDataEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `GisData` at the end of the edge.""" - node: GisData -} - -"""A connection to a list of `CbcProject` values.""" -type CbcProjectsConnection { - """A list of `CbcProject` objects.""" - nodes: [CbcProject]! +type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! """ - A list of edges which contains the `CbcProject` and cursor to aid in pagination. + A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CbcProjectsEdge!]! + edges: [CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CbcProject` you could get from the connection.""" + """The count of *all* `Intake` you could get from the connection.""" totalCount: Int! } -"""Table containing the data imported from the CBC projects excel file""" -type CbcProject implements Node { - """ - A globally unique identifier. Can be used in various places throughout the system to identify this single value. - """ - id: ID! - - """Unique ID for the row""" - rowId: Int! - - """The data imported from the excel""" - jsonData: JSON! - - """The timestamp of the last time the data was updated from sharepoint""" - sharepointTimestamp: Datetime - - """created by user id""" - createdBy: Int - - """created at timestamp""" - createdAt: Datetime! - - """updated by user id""" - updatedBy: Int - - """updated at timestamp""" - updatedAt: Datetime! - - """archived by user id""" - archivedBy: Int - - """archived at timestamp""" - archivedAt: Datetime - - """Reads a single `CcbcUser` that is related to this `CbcProject`.""" - ccbcUserByCreatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `CbcProject`.""" - ccbcUserByUpdatedBy: CcbcUser - - """Reads a single `CcbcUser` that is related to this `CbcProject`.""" - ccbcUserByArchivedBy: CcbcUser -} - -"""A `CbcProject` edge in the connection.""" -type CbcProjectsEdge { +"""A `Intake` edge in the connection, with data from `Application`.""" +type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CbcProject` at the end of the edge.""" - node: CbcProject -} - -"""Methods to use when ordering `CbcProject`.""" -enum CbcProjectsOrderBy { - NATURAL - ID_ASC - ID_DESC - JSON_DATA_ASC - JSON_DATA_DESC - SHAREPOINT_TIMESTAMP_ASC - SHAREPOINT_TIMESTAMP_DESC - CREATED_BY_ASC - CREATED_BY_DESC - CREATED_AT_ASC - CREATED_AT_DESC - UPDATED_BY_ASC - UPDATED_BY_DESC - UPDATED_AT_ASC - UPDATED_AT_DESC - ARCHIVED_BY_ASC - ARCHIVED_BY_DESC - ARCHIVED_AT_ASC - ARCHIVED_AT_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC -} - -""" -A condition to be used against `CbcProject` object types. All fields are tested -for equality and combined with a logical ‘and.’ -""" -input CbcProjectCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `jsonData` field.""" - jsonData: JSON - - """Checks for equality with the object’s `sharepointTimestamp` field.""" - sharepointTimestamp: Datetime - - """Checks for equality with the object’s `createdBy` field.""" - createdBy: Int - - """Checks for equality with the object’s `createdAt` field.""" - createdAt: Datetime - - """Checks for equality with the object’s `updatedBy` field.""" - updatedBy: Int - - """Checks for equality with the object’s `updatedAt` field.""" - updatedAt: Datetime + """The `Intake` at the end of the edge.""" + node: Intake - """Checks for equality with the object’s `archivedBy` field.""" - archivedBy: Int + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( + """Only read the first `n` values of the set.""" + first: Int - """Checks for equality with the object’s `archivedAt` field.""" - archivedAt: Datetime -} + """Only read the last `n` values of the set.""" + last: Int -"""A connection to a list of `EmailRecord` values.""" -type EmailRecordsConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! + """ + Skip the first `n` values from our `after` cursor, an alternative to cursor + based pagination. May not be used with `last`. + """ + offset: Int - """ - A list of edges which contains the `EmailRecord` and cursor to aid in pagination. - """ - edges: [EmailRecordsEdge!]! + """Read all values in the set before (above) this cursor.""" + before: Cursor - """Information to aid in pagination.""" - pageInfo: PageInfo! + """Read all values in the set after (below) this cursor.""" + after: Cursor - """The count of *all* `EmailRecord` you could get from the connection.""" - totalCount: Int! -} + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] -"""A `EmailRecord` edge in the connection.""" -type EmailRecordsEdge { - """A cursor for use in pagination.""" - cursor: Cursor + """ + A condition to be used in determining which values should be returned by the collection. + """ + condition: ApplicationCondition - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """ + A filter to be used in determining which values should be returned by the collection. + """ + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42809,16 +46235,16 @@ type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByUpdatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -42837,32 +46263,32 @@ type CcbcUserCcbcUsersByCcbcUserCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42871,16 +46297,16 @@ type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -42899,50 +46325,50 @@ type CcbcUserCcbcUsersByCcbcUserCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `Intake` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection { + """A list of `Intake` objects.""" + nodes: [Intake]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Intake` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge { +"""A `Intake` edge in the connection, with data from `Application`.""" +type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Intake` at the end of the edge.""" + node: Intake - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByIntakeId( """Only read the first `n` values of the set.""" first: Int @@ -42961,32 +46387,32 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -42995,16 +46421,16 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByArchivedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43023,32 +46449,32 @@ type CcbcUserCcbcUsersByCcbcUserUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `CcbcUser` values, with data from `Application`. """ -type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43057,16 +46483,16 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Application`.""" +type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CcbcUser`.""" - ccbcUsersByCreatedBy( + """Reads and enables pagination through a set of `Application`.""" + applicationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43085,50 +46511,52 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Application`.""" + orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CcbcUserCondition + condition: ApplicationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CcbcUserFilter - ): CcbcUsersConnection! + filter: ApplicationFilter + ): ApplicationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CcbcUser`. +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `CcbcUser`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge!]! """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 `CcbcUser`.""" -type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationStatus`. +""" +type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge { """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 `CcbcUser`.""" - ccbcUsersByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -43147,48 +46575,54 @@ type CcbcUserCcbcUsersByCcbcUserArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CcbcUser`.""" - orderBy: [CcbcUsersOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 - ): CcbcUsersConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +""" +type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge { +""" +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +""" +type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -43207,30 +46641,32 @@ type CcbcUserCcbcUsersByIntakeCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43239,16 +46675,18 @@ type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -43267,50 +46705,52 @@ type CcbcUserCcbcUsersByIntakeCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `GaplessCounter` values, with data from `Intake`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyConnection { - """A list of `GaplessCounter` objects.""" - nodes: [GaplessCounter]! +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GaplessCounter` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" -type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GaplessCounter` at the end of the edge.""" - node: GaplessCounter + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43329,71 +46769,52 @@ type CcbcUserGaplessCountersByIntakeCreatedByAndCounterIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! -} - -"""Methods to use when ordering `GaplessCounter`.""" -enum GaplessCountersOrderBy { - NATURAL - ID_ASC - ID_DESC - COUNTER_ASC - COUNTER_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A condition to be used against `GaplessCounter` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A connection to a list of `Application` values, with data from `ApplicationStatus`. """ -input GaplessCounterCondition { - """Checks for equality with the object’s `rowId` field.""" - rowId: Int - - """Checks for equality with the object’s `counter` field.""" - counter: Int -} - -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationStatus`. +""" +type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -43412,48 +46833,54 @@ type CcbcUserCcbcUsersByIntakeUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +""" +type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge { +""" +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +""" +type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType - """Reads and enables pagination through a set of `Intake`.""" - intakesByArchivedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -43472,50 +46899,52 @@ type CcbcUserCcbcUsersByIntakeUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `GaplessCounter` values, with data from `Intake`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyConnection { - """A list of `GaplessCounter` objects.""" - nodes: [GaplessCounter]! +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GaplessCounter` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" -type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GaplessCounter` at the end of the edge.""" - node: GaplessCounter + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43534,30 +46963,32 @@ type CcbcUserGaplessCountersByIntakeUpdatedByAndCounterIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +""" +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43566,16 +46997,18 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Intake`.""" - intakesByCreatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43594,48 +47027,52 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `Application` values, with data from `ApplicationStatus`. +""" +type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Intake`.""" -type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationStatus`. +""" +type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Intake`.""" - intakesByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -43654,50 +47091,54 @@ type CcbcUserCcbcUsersByIntakeArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `GaplessCounter` values, with data from `Intake`. +A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. """ -type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyConnection { - """A list of `GaplessCounter` objects.""" - nodes: [GaplessCounter]! +type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection { + """A list of `ApplicationStatusType` objects.""" + nodes: [ApplicationStatusType]! """ - A list of edges which contains the `GaplessCounter`, info from the `Intake`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge!]! + edges: [CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GaplessCounter` you could get from the connection.""" + """ + The count of *all* `ApplicationStatusType` you could get from the connection. + """ totalCount: Int! } -"""A `GaplessCounter` edge in the connection, with data from `Intake`.""" -type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge { +""" +A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +""" +type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GaplessCounter` at the end of the edge.""" - node: GaplessCounter + """The `ApplicationStatusType` at the end of the edge.""" + node: ApplicationStatusType - """Reads and enables pagination through a set of `Intake`.""" - intakesByCounterId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByStatus( """Only read the first `n` values of the set.""" first: Int @@ -43716,50 +47157,52 @@ type CcbcUserGaplessCountersByIntakeArchivedByAndCounterIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Intake`.""" - orderBy: [IntakesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: IntakeCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: IntakeFilter - ): IntakesConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `Intake` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Intake` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Intake` edge in the connection, with data from `Application`.""" -type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Intake` at the end of the edge.""" - node: Intake + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -43778,32 +47221,32 @@ type CcbcUserIntakesByApplicationCreatedByAndIntakeIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. """ -type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43812,16 +47255,18 @@ type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +""" +type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationStatus`.""" + applicationStatusesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -43840,50 +47285,50 @@ type CcbcUserCcbcUsersByApplicationCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationStatus`.""" + orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: ApplicationStatusCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: ApplicationStatusFilter + ): ApplicationStatusesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `Application` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge!]! """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 `Application`.""" -type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge { """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 `Application`.""" - applicationsByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -43902,50 +47347,54 @@ type CcbcUserCcbcUsersByApplicationCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Intake` values, with data from `Application`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! +type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Intake` you could get from the connection.""" + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ totalCount: Int! } -"""A `Intake` edge in the connection, with data from `Application`.""" -type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge { +""" +A `ApplicationStatus` edge in the connection, with data from `Attachment`. +""" +type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Intake` at the end of the edge.""" - node: Intake + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -43964,32 +47413,32 @@ type CcbcUserIntakesByApplicationUpdatedByAndIntakeIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -43998,16 +47447,16 @@ type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44026,32 +47475,32 @@ type CcbcUserCcbcUsersByApplicationUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44060,16 +47509,16 @@ type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44088,50 +47537,50 @@ type CcbcUserCcbcUsersByApplicationUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Intake` values, with data from `Application`. +A connection to a list of `Application` values, with data from `Attachment`. """ -type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyConnection { - """A list of `Intake` objects.""" - nodes: [Intake]! +type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Intake`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Intake` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `Intake` edge in the connection, with data from `Application`.""" -type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Intake` at the end of the edge.""" - node: Intake + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Application`.""" - applicationsByIntakeId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -44150,50 +47599,54 @@ type CcbcUserIntakesByApplicationArchivedByAndIntakeIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge { +""" +A `ApplicationStatus` edge in the connection, with data from `Attachment`. +""" +type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """Reads and enables pagination through a set of `Application`.""" - applicationsByCreatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -44212,32 +47665,32 @@ type CcbcUserCcbcUsersByApplicationArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Application`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Application`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44246,16 +47699,16 @@ type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Application`.""" -type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Application`.""" - applicationsByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44274,52 +47727,50 @@ type CcbcUserCcbcUsersByApplicationArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationFilter - ): ApplicationsConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44338,54 +47789,50 @@ type CcbcUserApplicationsByApplicationStatusCreatedByAndApplicationIdManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `Application` values, with data from `Attachment`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge!]! + edges: [CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatusType` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToManyEdge { +"""A `Application` edge in the connection, with data from `Attachment`.""" +type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -44404,52 +47851,54 @@ type CcbcUserApplicationStatusTypesByApplicationStatusCreatedByAndStatusManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `ApplicationStatus` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection { + """A list of `ApplicationStatus` objects.""" + nodes: [ApplicationStatus]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationStatus` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. +A `ApplicationStatus` edge in the connection, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationStatus` at the end of the edge.""" + node: ApplicationStatus - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByApplicationStatusId( """Only read the first `n` values of the set.""" first: Int @@ -44468,32 +47917,32 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44502,18 +47951,16 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyConnecti totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44532,52 +47979,50 @@ type CcbcUserCcbcUsersByApplicationStatusCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `Attachment`. """ -type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" +type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """Reads and enables pagination through a set of `Attachment`.""" + attachmentsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44596,54 +48041,54 @@ type CcbcUserApplicationsByApplicationStatusArchivedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Attachment`.""" + orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: AttachmentCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: AttachmentFilter + ): AttachmentsConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge!]! + edges: [CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationStatusType` you could get from the connection. + The count of *all* `FormDataStatusType` you could get from the connection. """ totalCount: Int! } """ -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +A `FormDataStatusType` edge in the connection, with data from `FormData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToManyEdge { +type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -44662,32 +48107,32 @@ type CcbcUserApplicationStatusTypesByApplicationStatusArchivedByAndStatusManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44696,18 +48141,16 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44726,32 +48169,32 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44760,18 +48203,16 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByUpdatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -44790,52 +48231,48 @@ type CcbcUserCcbcUsersByApplicationStatusArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: FormDataFilter + ): FormDataConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationStatus`. -""" -type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `Form` values, with data from `FormData`.""" +type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - A list of edges which contains the `Application`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Form` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyEdge { +"""A `Form` edge in the connection, with data from `FormData`.""" +type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Form` at the end of the edge.""" + node: Form - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByApplicationId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -44854,54 +48291,54 @@ type CcbcUserApplicationsByApplicationStatusUpdatedByAndApplicationIdManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `ApplicationStatusType` values, with data from `ApplicationStatus`. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyConnection { - """A list of `ApplicationStatusType` objects.""" - nodes: [ApplicationStatusType]! +type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! """ - A list of edges which contains the `ApplicationStatusType`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge!]! + edges: [CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationStatusType` you could get from the connection. + The count of *all* `FormDataStatusType` you could get from the connection. """ totalCount: Int! } """ -A `ApplicationStatusType` edge in the connection, with data from `ApplicationStatus`. +A `FormDataStatusType` edge in the connection, with data from `FormData`. """ -type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToManyEdge { +type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatusType` at the end of the edge.""" - node: ApplicationStatusType + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByStatus( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -44920,32 +48357,32 @@ type CcbcUserApplicationStatusTypesByApplicationStatusUpdatedByAndStatusManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -44954,18 +48391,16 @@ type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyConnecti totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByCreatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -44984,32 +48419,32 @@ type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationStatus`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationStatus`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45018,18 +48453,16 @@ type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationStatus`. -""" -type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationStatus`.""" - applicationStatusesByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45048,50 +48481,48 @@ type CcbcUserCcbcUsersByApplicationStatusUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationStatus`.""" - orderBy: [ApplicationStatusesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationStatusCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationStatusFilter - ): ApplicationStatusesConnection! + filter: FormDataFilter + ): FormDataConnection! } -""" -A connection to a list of `Application` values, with data from `Attachment`. -""" -type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `Form` values, with data from `FormData`.""" +type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Form` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge { +"""A `Form` edge in the connection, with data from `FormData`.""" +type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Form` at the end of the edge.""" + node: Form - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -45110,54 +48541,54 @@ type CcbcUserApplicationsByAttachmentCreatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. +A connection to a list of `FormDataStatusType` values, with data from `FormData`. """ -type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection { + """A list of `FormDataStatusType` objects.""" + nodes: [FormDataStatusType]! """ - A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge!]! + edges: [CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! """ - The count of *all* `ApplicationStatus` you could get from the connection. + The count of *all* `FormDataStatusType` you could get from the connection. """ totalCount: Int! } """ -A `ApplicationStatus` edge in the connection, with data from `Attachment`. +A `FormDataStatusType` edge in the connection, with data from `FormData`. """ -type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyToManyEdge { +type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `FormDataStatusType` at the end of the edge.""" + node: FormDataStatusType - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -45176,32 +48607,32 @@ type CcbcUserApplicationStatusesByAttachmentCreatedByAndApplicationStatusIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45210,16 +48641,16 @@ type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45238,32 +48669,32 @@ type CcbcUserCcbcUsersByAttachmentCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `CcbcUser` values, with data from `FormData`. """ -type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45272,16 +48703,16 @@ type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `FormData`.""" +type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `FormData`.""" + formDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45300,50 +48731,48 @@ type CcbcUserCcbcUsersByAttachmentCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } -""" -A connection to a list of `Application` values, with data from `Attachment`. -""" -type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `Form` values, with data from `FormData`.""" +type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection { + """A list of `Form` objects.""" + nodes: [Form]! """ - A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Form` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge { +"""A `Form` edge in the connection, with data from `FormData`.""" +type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Form` at the end of the edge.""" + node: Form - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `FormData`.""" + formDataByFormSchemaId( """Only read the first `n` values of the set.""" first: Int @@ -45362,54 +48791,48 @@ type CcbcUserApplicationsByAttachmentUpdatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `FormData`.""" + orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: FormDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: FormDataFilter + ): FormDataConnection! } -""" -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. -""" -type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationStatus` edge in the connection, with data from `Attachment`. -""" -type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45428,32 +48851,30 @@ type CcbcUserApplicationStatusesByAttachmentUpdatedByAndApplicationStatusIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Attachment`. -""" -type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45462,16 +48883,16 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45490,32 +48911,30 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Attachment`. -""" -type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45524,16 +48943,16 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByArchivedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45552,50 +48971,48 @@ type CcbcUserCcbcUsersByAttachmentUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `Application` values, with data from `Attachment`. -""" -type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Attachment`.""" -type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45614,54 +49031,48 @@ type CcbcUserApplicationsByAttachmentArchivedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `ApplicationStatus` values, with data from `Attachment`. -""" -type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyConnection { - """A list of `ApplicationStatus` objects.""" - nodes: [ApplicationStatus]! +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `ApplicationStatus`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationStatus` you could get from the connection. - """ + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `ApplicationStatus` edge in the connection, with data from `Attachment`. -""" -type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationStatus` at the end of the edge.""" - node: ApplicationStatus + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByApplicationStatusId( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45680,32 +49091,30 @@ type CcbcUserApplicationStatusesByAttachmentArchivedByAndApplicationStatusIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: AnalystFilter + ): AnalystsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Attachment`. -""" -type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45714,16 +49123,16 @@ type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" +type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByCreatedBy( + """Reads and enables pagination through a set of `Analyst`.""" + analystsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45742,50 +49151,54 @@ type CcbcUserCcbcUsersByAttachmentArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Analyst`.""" + orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: AnalystCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: AnalystFilter + ): AnalystsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Attachment`. +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Attachment`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Attachment`.""" -type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Attachment`.""" - attachmentsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -45804,54 +49217,54 @@ type CcbcUserCcbcUsersByAttachmentArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Attachment`.""" - orderBy: [AttachmentsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AttachmentCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AttachmentFilter - ): AttachmentsConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `FormDataStatusType` values, with data from `FormData`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `FormDataStatusType` you could get from the connection. - """ + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `FormDataStatusType` edge in the connection, with data from `FormData`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyToManyEdge { +type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """The `Analyst` at the end of the edge.""" + node: Analyst - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -45870,32 +49283,32 @@ type CcbcUserFormDataStatusTypesByFormDataCreatedByAndFormDataStatusTypeIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45904,16 +49317,20 @@ type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -45932,32 +49349,32 @@ type CcbcUserCcbcUsersByFormDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -45966,16 +49383,20 @@ type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -45994,48 +49415,54 @@ type CcbcUserCcbcUsersByFormDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } -"""A connection to a list of `Form` values, with data from `FormData`.""" -type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyConnection { - """A list of `Form` objects.""" - nodes: [Form]! +""" +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +""" +type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Form` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `Form` edge in the connection, with data from `FormData`.""" -type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Form` at the end of the edge.""" - node: Form + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -46054,54 +49481,54 @@ type CcbcUserFormsByFormDataCreatedByAndFormSchemaIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `FormDataStatusType` values, with data from `FormData`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `FormDataStatusType` you could get from the connection. - """ + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `FormDataStatusType` edge in the connection, with data from `FormData`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyToManyEdge { +type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """The `Analyst` at the end of the edge.""" + node: Analyst - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -46120,32 +49547,32 @@ type CcbcUserFormDataStatusTypesByFormDataUpdatedByAndFormDataStatusTypeIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46154,16 +49581,20 @@ type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46182,32 +49613,32 @@ type CcbcUserCcbcUsersByFormDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46216,16 +49647,20 @@ type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46244,48 +49679,54 @@ type CcbcUserCcbcUsersByFormDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } -"""A connection to a list of `Form` values, with data from `FormData`.""" -type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyConnection { - """A list of `Form` objects.""" - nodes: [Form]! +""" +A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +""" +type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Form` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `Form` edge in the connection, with data from `FormData`.""" -type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Form` at the end of the edge.""" - node: Form + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -46304,54 +49745,54 @@ type CcbcUserFormsByFormDataUpdatedByAndFormSchemaIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `FormDataStatusType` values, with data from `FormData`. +A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyConnection { - """A list of `FormDataStatusType` objects.""" - nodes: [FormDataStatusType]! +type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection { + """A list of `Analyst` objects.""" + nodes: [Analyst]! """ - A list of edges which contains the `FormDataStatusType`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `FormDataStatusType` you could get from the connection. - """ + """The count of *all* `Analyst` you could get from the connection.""" totalCount: Int! } """ -A `FormDataStatusType` edge in the connection, with data from `FormData`. +A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. """ -type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyToManyEdge { +type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `FormDataStatusType` at the end of the edge.""" - node: FormDataStatusType + """The `Analyst` at the end of the edge.""" + node: Analyst - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormDataStatusTypeId( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByAnalystId( """Only read the first `n` values of the set.""" first: Int @@ -46370,32 +49811,32 @@ type CcbcUserFormDataStatusTypesByFormDataArchivedByAndFormDataStatusTypeIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46404,16 +49845,20 @@ type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46432,32 +49877,32 @@ type CcbcUserCcbcUsersByFormDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `FormData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. """ -type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46466,16 +49911,20 @@ type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `FormData`.""" -type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +""" +type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `FormData`.""" - formDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnalystLead`. + """ + applicationAnalystLeadsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46494,48 +49943,54 @@ type CcbcUserCcbcUsersByFormDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnalystLead`.""" + orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: ApplicationAnalystLeadCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! + filter: ApplicationAnalystLeadFilter + ): ApplicationAnalystLeadsConnection! } -"""A connection to a list of `Form` values, with data from `FormData`.""" -type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyConnection { - """A list of `Form` objects.""" - nodes: [Form]! +""" +A connection to a list of `RfiDataStatusType` values, with data from `RfiData`. +""" +type CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyConnection { + """A list of `RfiDataStatusType` objects.""" + nodes: [RfiDataStatusType]! """ - A list of edges which contains the `Form`, info from the `FormData`, and the cursor to aid in pagination. + A list of edges which contains the `RfiDataStatusType`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge!]! + edges: [CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Form` you could get from the connection.""" + """ + The count of *all* `RfiDataStatusType` you could get from the connection. + """ totalCount: Int! } -"""A `Form` edge in the connection, with data from `FormData`.""" -type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge { +""" +A `RfiDataStatusType` edge in the connection, with data from `RfiData`. +""" +type CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Form` at the end of the edge.""" - node: Form + """The `RfiDataStatusType` at the end of the edge.""" + node: RfiDataStatusType - """Reads and enables pagination through a set of `FormData`.""" - formDataByFormSchemaId( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -46554,90 +50009,53 @@ type CcbcUserFormsByFormDataArchivedByAndFormSchemaIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `FormData`.""" - orderBy: [FormDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: FormDataCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: FormDataFilter - ): FormDataConnection! -} - -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! - - """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. - """ - edges: [CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge!]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `CcbcUser` you could get from the connection.""" - totalCount: Int! + filter: RfiDataFilter + ): RfiDataConnection! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndUpdatedByManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser - - """Reads and enables pagination through a set of `Analyst`.""" - analystsByUpdatedBy( - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] +"""Methods to use when ordering `RfiDataStatusType`.""" +enum RfiDataStatusTypesOrderBy { + NATURAL + NAME_ASC + NAME_DESC + DESCRIPTION_ASC + DESCRIPTION_DESC + PRIMARY_KEY_ASC + PRIMARY_KEY_DESC +} - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: AnalystCondition +""" +A condition to be used against `RfiDataStatusType` object types. All fields are +tested for equality and combined with a logical ‘and.’ +""" +input RfiDataStatusTypeCondition { + """Checks for equality with the object’s `name` field.""" + name: String - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: AnalystFilter - ): AnalystsConnection! + """Checks for equality with the object’s `description` field.""" + description: String } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" +type CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46646,16 +50064,16 @@ type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByArchivedBy( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46674,30 +50092,30 @@ type CcbcUserCcbcUsersByAnalystCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: RfiDataFilter + ): RfiDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" +type CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46706,16 +50124,16 @@ type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByCreatedBy( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46734,48 +50152,54 @@ type CcbcUserCcbcUsersByAnalystUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: RfiDataFilter + ): RfiDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +""" +A connection to a list of `RfiDataStatusType` values, with data from `RfiData`. +""" +type CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyConnection { + """A list of `RfiDataStatusType` objects.""" + nodes: [RfiDataStatusType]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `RfiDataStatusType`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `RfiDataStatusType` you could get from the connection. + """ totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge { +""" +A `RfiDataStatusType` edge in the connection, with data from `RfiData`. +""" +type CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `RfiDataStatusType` at the end of the edge.""" + node: RfiDataStatusType - """Reads and enables pagination through a set of `Analyst`.""" - analystsByArchivedBy( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -46794,30 +50218,30 @@ type CcbcUserCcbcUsersByAnalystUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: RfiDataFilter + ): RfiDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" +type CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46826,16 +50250,16 @@ type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByCreatedBy( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -46854,30 +50278,30 @@ type CcbcUserCcbcUsersByAnalystArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: RfiDataFilter + ): RfiDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" +type CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Analyst`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -46886,16 +50310,16 @@ type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Analyst`.""" -type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Analyst`.""" - analystsByUpdatedBy( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -46914,54 +50338,54 @@ type CcbcUserCcbcUsersByAnalystArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Analyst`.""" - orderBy: [AnalystsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnalystCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnalystFilter - ): AnalystsConnection! + filter: RfiDataFilter + ): RfiDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `RfiDataStatusType` values, with data from `RfiData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyConnection { + """A list of `RfiDataStatusType` objects.""" + nodes: [RfiDataStatusType]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `RfiDataStatusType`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `RfiDataStatusType` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `RfiDataStatusType` edge in the connection, with data from `RfiData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `RfiDataStatusType` at the end of the edge.""" + node: RfiDataStatusType - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByApplicationId( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByRfiDataStatusTypeId( """Only read the first `n` values of the set.""" first: Int @@ -46980,54 +50404,48 @@ type CcbcUserApplicationsByApplicationAnalystLeadCreatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: RfiDataFilter + ): RfiDataConnection! } -""" -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. -""" -type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" +type CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByAnalystId( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47046,32 +50464,30 @@ type CcbcUserAnalystsByApplicationAnalystLeadCreatedByAndAnalystIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: RfiDataFilter + ): RfiDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. -""" -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" +type CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47080,20 +50496,16 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" +type CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByUpdatedBy( + """Reads and enables pagination through a set of `RfiData`.""" + rfiDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47112,54 +50524,52 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `RfiData`.""" + orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: RfiDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: RfiDataFilter + ): RfiDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -47178,54 +50588,52 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadCreatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `AssessmentType` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `AssessmentType` edge in the connection, with data from `AssessmentData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByApplicationId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -47244,54 +50652,50 @@ type CcbcUserApplicationsByApplicationAnalystLeadUpdatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByAnalystId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47310,32 +50714,32 @@ type CcbcUserAnalystsByApplicationAnalystLeadUpdatedByAndAnalystIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47344,20 +50748,16 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47376,54 +50776,52 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndCreatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge { """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 `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -47442,54 +50840,52 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadUpdatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnalystLead`. +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `AssessmentType` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnalystLead`. +A `AssessmentType` edge in the connection, with data from `AssessmentData`. """ -type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByApplicationId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -47508,54 +50904,50 @@ type CcbcUserApplicationsByApplicationAnalystLeadArchivedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `Analyst` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyConnection { - """A list of `Analyst` objects.""" - nodes: [Analyst]! +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Analyst`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Analyst` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Analyst` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Analyst` at the end of the edge.""" - node: Analyst + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByAnalystId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47574,32 +50966,32 @@ type CcbcUserAnalystsByApplicationAnalystLeadArchivedByAndAnalystIdManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47608,20 +51000,16 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnalystLead`. -""" -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByCreatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -47640,54 +51028,52 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnalystLead`. +A connection to a list of `Application` values, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnalystLead`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationAnalystLead`. +A `Application` edge in the connection, with data from `AssessmentData`. """ -type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge { """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 `ApplicationAnalystLead`. - """ - applicationAnalystLeadsByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -47706,54 +51092,52 @@ type CcbcUserCcbcUsersByApplicationAnalystLeadArchivedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnalystLead`.""" - orderBy: [ApplicationAnalystLeadsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnalystLeadCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnalystLeadFilter - ): ApplicationAnalystLeadsConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `RfiDataStatusType` values, with data from `RfiData`. +A connection to a list of `AssessmentType` values, with data from `AssessmentData`. """ -type CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyConnection { - """A list of `RfiDataStatusType` objects.""" - nodes: [RfiDataStatusType]! +type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection { + """A list of `AssessmentType` objects.""" + nodes: [AssessmentType]! """ - A list of edges which contains the `RfiDataStatusType`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `RfiDataStatusType` you could get from the connection. - """ + """The count of *all* `AssessmentType` you could get from the connection.""" totalCount: Int! } """ -A `RfiDataStatusType` edge in the connection, with data from `RfiData`. +A `AssessmentType` edge in the connection, with data from `AssessmentData`. """ -type CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToManyEdge { +type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `RfiDataStatusType` at the end of the edge.""" - node: RfiDataStatusType + """The `AssessmentType` at the end of the edge.""" + node: AssessmentType - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByRfiDataStatusTypeId( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByAssessmentDataType( """Only read the first `n` values of the set.""" first: Int @@ -47772,53 +51156,32 @@ type CcbcUserRfiDataStatusTypesByRfiDataCreatedByAndRfiDataStatusTypeIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! -} - -"""Methods to use when ordering `RfiDataStatusType`.""" -enum RfiDataStatusTypesOrderBy { - NATURAL - NAME_ASC - NAME_DESC - DESCRIPTION_ASC - DESCRIPTION_DESC - PRIMARY_KEY_ASC - PRIMARY_KEY_DESC + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A condition to be used against `RfiDataStatusType` object types. All fields are -tested for equality and combined with a logical ‘and.’ +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. """ -input RfiDataStatusTypeCondition { - """Checks for equality with the object’s `name` field.""" - name: String - - """Checks for equality with the object’s `description` field.""" - description: String -} - -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47827,16 +51190,16 @@ type CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByUpdatedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47855,30 +51218,32 @@ type CcbcUserCcbcUsersByRfiDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +""" +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -47887,16 +51252,16 @@ type CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" +type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByArchivedBy( + """Reads and enables pagination through a set of `AssessmentData`.""" + assessmentDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -47915,54 +51280,52 @@ type CcbcUserCcbcUsersByRfiDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `AssessmentData`.""" + orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: AssessmentDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: AssessmentDataFilter + ): AssessmentDataConnection! } """ -A connection to a list of `RfiDataStatusType` values, with data from `RfiData`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyConnection { - """A list of `RfiDataStatusType` objects.""" - nodes: [RfiDataStatusType]! +type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `RfiDataStatusType`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `RfiDataStatusType` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `RfiDataStatusType` edge in the connection, with data from `RfiData`. +A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `RfiDataStatusType` at the end of the edge.""" - node: RfiDataStatusType + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByRfiDataStatusTypeId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -47981,30 +51344,32 @@ type CcbcUserRfiDataStatusTypesByRfiDataUpdatedByAndRfiDataStatusTypeIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48013,16 +51378,18 @@ type CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48041,30 +51408,32 @@ type CcbcUserCcbcUsersByRfiDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48073,16 +51442,18 @@ type CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48101,54 +51472,52 @@ type CcbcUserCcbcUsersByRfiDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `RfiDataStatusType` values, with data from `RfiData`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyConnection { - """A list of `RfiDataStatusType` objects.""" - nodes: [RfiDataStatusType]! +type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `RfiDataStatusType`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `RfiDataStatusType` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `RfiDataStatusType` edge in the connection, with data from `RfiData`. +A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `RfiDataStatusType` at the end of the edge.""" - node: RfiDataStatusType + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByRfiDataStatusTypeId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -48167,30 +51536,32 @@ type CcbcUserRfiDataStatusTypesByRfiDataArchivedByAndRfiDataStatusTypeIdManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48199,16 +51570,18 @@ type CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48227,30 +51600,32 @@ type CcbcUserCcbcUsersByRfiDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } -"""A connection to a list of `CcbcUser` values, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `RfiData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48259,16 +51634,18 @@ type CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `RfiData`.""" -type CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `RfiData`.""" - rfiDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48287,32 +51664,32 @@ type CcbcUserCcbcUsersByRfiDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `RfiData`.""" - orderBy: [RfiDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: RfiDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: RfiDataFilter - ): RfiDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `Application` values, with data from `AssessmentData`. +A connection to a list of `Application` values, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48322,17 +51699,17 @@ type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyConn } """ -A `Application` edge in the connection, with data from `AssessmentData`. +A `Application` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -48351,52 +51728,52 @@ type CcbcUserApplicationsByAssessmentDataCreatedByAndApplicationIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `AssessmentType` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `AssessmentType` edge in the connection, with data from `AssessmentData`. +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. """ -type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyToManyEdge { +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48415,32 +51792,32 @@ type CcbcUserAssessmentTypesByAssessmentDataCreatedByAndAssessmentDataTypeManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. """ -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48449,16 +51826,18 @@ type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +""" +type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationPackage`.""" + applicationPackagesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48477,50 +51856,54 @@ type CcbcUserCcbcUsersByAssessmentDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPackage`.""" + orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ApplicationPackageCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ApplicationPackageFilter + ): ApplicationPackagesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ConditionalApprovalData`. +""" +type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -48539,52 +51922,54 @@ type CcbcUserCcbcUsersByAssessmentDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `Application` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `AssessmentData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48603,52 +51988,54 @@ type CcbcUserApplicationsByAssessmentDataUpdatedByAndApplicationIdManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `AssessmentType` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `AssessmentType` edge in the connection, with data from `AssessmentData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48667,50 +52054,54 @@ type CcbcUserAssessmentTypesByAssessmentDataUpdatedByAndAssessmentDataTypeManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ConditionalApprovalData`. +""" +type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -48729,32 +52120,32 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48763,16 +52154,20 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +""" +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByArchivedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48791,52 +52186,54 @@ type CcbcUserCcbcUsersByAssessmentDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `Application` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `AssessmentData`. +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByApplicationId( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -48855,52 +52252,54 @@ type CcbcUserApplicationsByAssessmentDataArchivedByAndApplicationIdManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `AssessmentType` values, with data from `AssessmentData`. +A connection to a list of `Application` values, with data from `ConditionalApprovalData`. """ -type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyConnection { - """A list of `AssessmentType` objects.""" - nodes: [AssessmentType]! +type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `AssessmentType`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge!]! + edges: [CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `AssessmentType` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `AssessmentType` edge in the connection, with data from `AssessmentData`. +A `Application` edge in the connection, with data from `ConditionalApprovalData`. """ -type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyToManyEdge { +type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `AssessmentType` at the end of the edge.""" - node: AssessmentType + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByAssessmentDataType( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -48919,32 +52318,32 @@ type CcbcUserAssessmentTypesByAssessmentDataArchivedByAndAssessmentDataTypeManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -48953,16 +52352,20 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +""" +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByCreatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -48981,32 +52384,32 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `AssessmentData`. +A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. """ -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `AssessmentData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49015,16 +52418,20 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyConnection totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `AssessmentData`.""" -type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +""" +type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `AssessmentData`.""" - assessmentDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ConditionalApprovalData`. + """ + conditionalApprovalDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49043,52 +52450,48 @@ type CcbcUserCcbcUsersByAssessmentDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `AssessmentData`.""" - orderBy: [AssessmentDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ConditionalApprovalData`.""" + orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AssessmentDataCondition + condition: ConditionalApprovalDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AssessmentDataFilter - ): AssessmentDataConnection! + filter: ConditionalApprovalDataFilter + ): ConditionalApprovalDataConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationPackage`. -""" -type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationPackage`. -""" -type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49107,32 +52510,30 @@ type CcbcUserApplicationsByApplicationPackageCreatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. -""" -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49141,18 +52542,16 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. -""" -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -49171,32 +52570,30 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. -""" -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49205,18 +52602,16 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. -""" -type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49235,52 +52630,48 @@ type CcbcUserCcbcUsersByApplicationPackageCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationPackage`. -""" -type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationPackage`. -""" -type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -49299,32 +52690,30 @@ type CcbcUserApplicationsByApplicationPackageUpdatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. -""" -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49333,18 +52722,16 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. -""" -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49363,32 +52750,30 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: GisDataFilter + ): GisDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. -""" -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49397,18 +52782,16 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. -""" -type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `GisData`.""" +type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByArchivedBy( + """Reads and enables pagination through a set of `GisData`.""" + gisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49427,52 +52810,52 @@ type CcbcUserCcbcUsersByApplicationPackageUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `GisData`.""" + orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: GisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: GisDataFilter + ): GisDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationPackage`. +A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - A list of edges which contains the `Application`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `GisData`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `GisData` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationPackage`. +A `GisData` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `GisData` at the end of the edge.""" + node: GisData - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByApplicationId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -49491,52 +52874,52 @@ type CcbcUserApplicationsByApplicationPackageArchivedByAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, 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: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `Application` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -49555,32 +52938,32 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationPackage`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPackage`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49590,17 +52973,17 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationPackage`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationPackage`.""" - applicationPackagesByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49619,54 +53002,52 @@ type CcbcUserCcbcUsersByApplicationPackageArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPackage`.""" - orderBy: [ApplicationPackagesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPackageCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPackageFilter - ): ApplicationPackagesConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -49685,54 +53066,52 @@ type CcbcUserApplicationsByConditionalApprovalDataCreatedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection { + """A list of `GisData` objects.""" + nodes: [GisData]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, 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: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `GisData` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `GisData` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `GisData` at the end of the edge.""" + node: GisData - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -49751,54 +53130,52 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `Application` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -49817,54 +53194,52 @@ type CcbcUserCcbcUsersByConditionalApprovalDataCreatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -49883,32 +53258,32 @@ type CcbcUserApplicationsByConditionalApprovalDataUpdatedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -49918,19 +53293,17 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -49949,54 +53322,52 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `GisData` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyConnection { - """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 `ConditionalApprovalData`, 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: [CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge!]! + 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 `ConditionalApprovalData`. +A `GisData` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyEdge { +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 `ConditionalApprovalData`. - """ - conditionalApprovalDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByBatchId( """Only read the first `n` values of the set.""" first: Int @@ -50015,32 +53386,32 @@ type CcbcUserCcbcUsersByConditionalApprovalDataUpdatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `Application` values, with data from `ConditionalApprovalData`. +A connection to a list of `Application` values, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50050,19 +53421,17 @@ type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdMany } """ -A `Application` edge in the connection, with data from `ConditionalApprovalData`. +A `Application` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -50081,32 +53450,32 @@ type CcbcUserApplicationsByConditionalApprovalDataArchivedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50116,19 +53485,17 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50147,32 +53514,32 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndCreatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ConditionalApprovalData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ConditionalApprovalData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationGisData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50182,19 +53549,17 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyC } """ -A `CcbcUser` edge in the connection, with data from `ConditionalApprovalData`. +A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. """ -type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ConditionalApprovalData`. - """ - conditionalApprovalDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationGisData`.""" + applicationGisDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50213,30 +53578,32 @@ type CcbcUserCcbcUsersByConditionalApprovalDataArchivedByAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ConditionalApprovalData`.""" - orderBy: [ConditionalApprovalDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationGisData`.""" + orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ConditionalApprovalDataCondition + condition: ApplicationGisDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ConditionalApprovalDataFilter - ): ConditionalApprovalDataConnection! + filter: ApplicationGisDataFilter + ): ApplicationGisDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Announcement`. +""" +type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50245,16 +53612,16 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { +"""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 `GisData`.""" - gisDataByUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50273,30 +53640,32 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Announcement`. +""" +type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50305,16 +53674,16 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `GisData`.""" - gisDataByArchivedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -50333,30 +53702,32 @@ type CcbcUserCcbcUsersByGisDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Announcement`. +""" +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50365,16 +53736,16 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50393,30 +53764,32 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Announcement`. +""" +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50425,16 +53798,16 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByArchivedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -50453,30 +53826,32 @@ type CcbcUserCcbcUsersByGisDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Announcement`. +""" +type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50485,16 +53860,16 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" +type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `GisData`.""" - gisDataByCreatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50513,30 +53888,32 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } -"""A connection to a list of `CcbcUser` values, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `Announcement`. +""" +type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `GisData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Announcement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50545,16 +53922,16 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `GisData`.""" -type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `GisData`.""" - gisDataByUpdatedBy( + """Reads and enables pagination through a set of `Announcement`.""" + announcementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50573,52 +53950,54 @@ type CcbcUserCcbcUsersByGisDataArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `GisData`.""" - orderBy: [GisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Announcement`.""" + orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: GisDataCondition + condition: AnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: GisDataFilter - ): GisDataConnection! + filter: AnnouncementFilter + ): AnnouncementsConnection! } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - 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 `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `GisData` edge in the connection, with data from `ApplicationGisData`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `Announcement` at the end of the edge.""" + node: Announcement - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -50637,32 +54016,32 @@ type CcbcUserGisDataByApplicationGisDataCreatedByAndBatchIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50672,17 +54051,19 @@ type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ApplicationGisData`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -50701,32 +54082,32 @@ type CcbcUserApplicationsByApplicationGisDataCreatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50736,17 +54117,19 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge { +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 `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -50765,32 +54148,32 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50800,17 +54183,19 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -50829,52 +54214,54 @@ type CcbcUserCcbcUsersByApplicationGisDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - 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 `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `GisData` edge in the connection, with data from `ApplicationGisData`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `Announcement` at the end of the edge.""" + node: Announcement - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -50893,32 +54280,32 @@ type CcbcUserGisDataByApplicationGisDataUpdatedByAndBatchIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50928,17 +54315,19 @@ type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ApplicationGisData`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -50957,32 +54346,32 @@ type CcbcUserApplicationsByApplicationGisDataUpdatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -50992,17 +54381,19 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51021,32 +54412,32 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51056,17 +54447,19 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -51085,52 +54478,54 @@ type CcbcUserCcbcUsersByApplicationGisDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `GisData` values, with data from `ApplicationGisData`. +A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyConnection { - """A list of `GisData` objects.""" - nodes: [GisData]! +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { + """A list of `Announcement` objects.""" + nodes: [Announcement]! """ - 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 `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge!]! + edges: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `GisData` you could get from the connection.""" + """The count of *all* `Announcement` you could get from the connection.""" totalCount: Int! } """ -A `GisData` edge in the connection, with data from `ApplicationGisData`. +A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge { +type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `GisData` at the end of the edge.""" - node: GisData + """The `Announcement` at the end of the edge.""" + node: Announcement - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByBatchId( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByAnnouncementId( """Only read the first `n` values of the set.""" first: Int @@ -51149,32 +54544,32 @@ type CcbcUserGisDataByApplicationGisDataArchivedByAndBatchIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationGisData`. +A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationGisData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51184,17 +54579,19 @@ type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToMan } """ -A `Application` edge in the connection, with data from `ApplicationGisData`. +A `Application` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -51213,32 +54610,32 @@ type CcbcUserApplicationsByApplicationGisDataArchivedByAndApplicationIdManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationGisData`.""" - orderBy: [ApplicationGisDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51248,17 +54645,19 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51277,32 +54676,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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + filter: ApplicationAnnouncementFilter + ): ApplicationAnnouncementsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationGisData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationAnnouncement`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51312,17 +54711,19 @@ type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyConnec } """ -A `CcbcUser` edge in the connection, with data from `ApplicationGisData`. +A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. """ -type CcbcUserCcbcUsersByApplicationGisDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationGisData`.""" - applicationGisDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationAnnouncement`. + """ + applicationAnnouncementsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51341,50 +54742,52 @@ 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 `ApplicationAnnouncement`.""" + orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationGisDataCondition + condition: ApplicationAnnouncementCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationGisDataFilter - ): ApplicationGisDataConnection! + 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 `ApplicationSowData`. """ -type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `Announcement`, 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: [CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationSowData`. +""" +type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -51403,32 +54806,32 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51437,16 +54840,18 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +""" +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 `Announcement`.""" - announcementsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51465,32 +54870,32 @@ type CcbcUserCcbcUsersByAnnouncementCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51499,16 +54904,18 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +""" +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 `Announcement`.""" - announcementsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -51527,50 +54934,52 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection { + """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationSowData`. +""" +type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByArchivedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -51589,32 +54998,32 @@ type CcbcUserCcbcUsersByAnnouncementUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Announcement`.""" - orderBy: [AnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51623,16 +55032,18 @@ type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Announcement`.""" -type CcbcUserCcbcUsersByAnnouncementArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. +""" +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByCreatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51651,32 +55062,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 `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `Announcement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51685,16 +55096,18 @@ 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 `ApplicationSowData`. +""" +type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Announcement`.""" - announcementsByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -51713,54 +55126,52 @@ 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 `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: AnnouncementCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: AnnouncementFilter - ): AnnouncementsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. +A connection to a list of `Application` values, with data from `ApplicationSowData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Announcement` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `Announcement` edge in the connection, with data from `ApplicationAnnouncement`. +A `Application` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdManyToManyEdge { +type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByAnnouncementId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -51779,54 +55190,52 @@ type CcbcUserAnnouncementsByApplicationAnnouncementCreatedByAndAnnouncementIdMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationSowData`.""" + orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: ApplicationSowDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: ApplicationSowDataFilter + ): ApplicationSowDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByApplicationId( + """Reads and enables pagination through a set of `ApplicationSowData`.""" + applicationSowDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51845,32 +55254,32 @@ type CcbcUserApplicationsByApplicationAnnouncementCreatedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyConnection { """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: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -51880,19 +55289,17 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyCo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge { """A cursor 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`.""" + applicationSowDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -51911,54 +55318,54 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - 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 `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -51977,54 +55384,48 @@ type CcbcUserCcbcUsersByApplicationAnnouncementCreatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. -""" -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +"""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 `Announcement`, info from the `ApplicationAnnouncement`, 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: [CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge!]! """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`. -""" -type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByAnnouncementId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52043,54 +55444,48 @@ type CcbcUserAnnouncementsByApplicationAnnouncementUpdatedByAndAnnouncementIdMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. -""" -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""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 `Application`, info from the `ApplicationAnnouncement`, 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: [CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByApplicationId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -52109,54 +55504,54 @@ type CcbcUserApplicationsByApplicationAnnouncementUpdatedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - 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 `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -52175,32 +55570,30 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, 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: [CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52209,20 +55602,16 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyC totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByArchivedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52241,54 +55630,48 @@ type CcbcUserCcbcUsersByApplicationAnnouncementUpdatedByAndArchivedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `Announcement` values, with data from `ApplicationAnnouncement`. -""" -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyConnection { - """A list of `Announcement` objects.""" - nodes: [Announcement]! +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Announcement`, info from the `ApplicationAnnouncement`, 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: [CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge!]! """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`. -""" -type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Announcement` at the end of the edge.""" - node: Announcement + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByAnnouncementId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -52307,54 +55690,54 @@ type CcbcUserAnnouncementsByApplicationAnnouncementArchivedByAndAnnouncementIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationAnnouncement`.""" - orderBy: [ApplicationAnnouncementsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationAnnouncement`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. """ -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ApplicationAnnouncement`, 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: [CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationAnnouncement`. +A `ApplicationSowData` edge in the connection, with data from `SowTab2`. """ -type CcbcUserApplicationsByApplicationAnnouncementArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByApplicationId( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -52373,32 +55756,30 @@ 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 `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, 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: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52407,20 +55788,16 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyC totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByCreatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52439,32 +55816,30 @@ 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 `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationAnnouncement`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationAnnouncement`, 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: [CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52473,20 +55848,16 @@ type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyC totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationAnnouncement`. -""" -type CcbcUserCcbcUsersByApplicationAnnouncementArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" +type CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationAnnouncement`. - """ - applicationAnnouncementsByUpdatedBy( + """Reads and enables pagination through a set of `SowTab2`.""" + sowTab2SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52505,52 +55876,54 @@ 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 `SowTab2`.""" + orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationAnnouncementCondition + condition: SowTab2Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationAnnouncementFilter - ): ApplicationAnnouncementsConnection! + filter: SowTab2Filter + ): SowTab2SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationSowData`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { + """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 `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge!]! """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 `SowTab1`. """ -type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { """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 `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -52569,32 +55942,30 @@ type CcbcUserApplicationsByApplicationSowDataCreatedByAndApplicationIdManyToMany """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 `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnection { +"""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 `ApplicationSowData`, 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: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52603,18 +55974,16 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { +"""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 `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52633,32 +56002,30 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndUpdatedByManyToManyEdge { """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 `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnection { +"""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 `ApplicationSowData`, 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: [CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52667,18 +56034,16 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { +"""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 `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -52697,52 +56062,54 @@ type CcbcUserCcbcUsersByApplicationSowDataCreatedByAndArchivedByManyToManyEdge { """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 `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationSowData`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ApplicationSowData`, 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: [CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationSowData`. +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. """ -type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -52761,32 +56128,30 @@ type CcbcUserApplicationsByApplicationSowDataUpdatedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, 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: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52795,18 +56160,16 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyConnect totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -52825,32 +56188,30 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationSowData`, 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: [CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52859,18 +56220,16 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyConnec totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationSowData`. -""" -type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -52889,52 +56248,54 @@ type CcbcUserCcbcUsersByApplicationSowDataUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationSowData`.""" - orderBy: [ApplicationSowDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationSowData`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. """ -type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ApplicationSowData`, 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: [CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ApplicationSowData`. +A `ApplicationSowData` edge in the connection, with data from `SowTab1`. """ -type CcbcUserApplicationsByApplicationSowDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByApplicationId( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -52953,32 +56314,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 `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -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 `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection { """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 `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -52987,18 +56346,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 `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 `ApplicationSowData`.""" - applicationSowDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53017,32 +56374,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 `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } -""" -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 `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyConnection { """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 `SowTab1`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationSowDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53051,18 +56406,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 `SowTab1`.""" +type CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationSowData`.""" - applicationSowDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab1`.""" + sowTab1SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53081,54 +56434,54 @@ 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 `SowTab1`.""" + orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationSowDataCondition + condition: SowTab1Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationSowDataFilter - ): ApplicationSowDataConnection! + filter: SowTab1Filter + ): SowTab1SConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, 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: [CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +A `Application` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -53147,30 +56500,32 @@ type CcbcUserApplicationSowDataBySowTab2CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53179,16 +56534,20 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `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 `SowTab2`.""" - sowTab2SByUpdatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53207,30 +56566,32 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53239,16 +56600,20 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53267,54 +56632,54 @@ type CcbcUserCcbcUsersBySowTab2CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +A `Application` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -53333,30 +56698,32 @@ type CcbcUserApplicationSowDataBySowTab2UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53365,16 +56732,20 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `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 `SowTab2`.""" - sowTab2SByCreatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53393,30 +56764,32 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53425,16 +56798,20 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab2`.""" -type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByArchivedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53453,54 +56830,54 @@ type CcbcUserCcbcUsersBySowTab2UpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab2`. +A connection to a list of `Application` values, with data from `ProjectInformationData`. """ -type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab2`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab2`. +A `Application` edge in the connection, with data from `ProjectInformationData`. """ -type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SBySowId( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -53519,30 +56896,32 @@ type CcbcUserApplicationSowDataBySowTab2ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } -"""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 `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53551,16 +56930,20 @@ 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 `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab2`.""" - sowTab2SByCreatedBy( + """ + Reads and enables pagination through a set of `ProjectInformationData`. + """ + projectInformationDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53579,30 +56962,32 @@ type CcbcUserCcbcUsersBySowTab2ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab2`.""" - orderBy: [SowTab2SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } -"""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 `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyConnection { """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 `ProjectInformationData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab2ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53611,16 +56996,20 @@ 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 `ProjectInformationData`. +""" +type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge { """A cursor 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 `ProjectInformationData`. + """ + projectInformationDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53639,32 +57028,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 `ProjectInformationData`.""" + orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab2Condition + condition: ProjectInformationDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab2Filter - ): SowTab2SConnection! + filter: ProjectInformationDataFilter + ): ProjectInformationDataConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection { """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. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53676,17 +57065,17 @@ type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyConnection { } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. """ -type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { +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 `SowTab1`.""" - sowTab1SBySowId( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -53705,30 +57094,30 @@ type CcbcUserApplicationSowDataBySowTab1CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection { +"""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 `SowTab1`, 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: [CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53737,16 +57126,16 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { +"""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 `SowTab1`.""" - sowTab1SByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53765,30 +57154,30 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { """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 `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53797,16 +57186,16 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `SowTab1`.""" - sowTab1SByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -53825,32 +57214,32 @@ type CcbcUserCcbcUsersBySowTab1CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { """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. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53862,17 +57251,17 @@ type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyConnection { } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. """ -type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { """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( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -53891,30 +57280,30 @@ type CcbcUserApplicationSowDataBySowTab1UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab1`.""" - orderBy: [SowTab1SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection { +"""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 `SowTab1`, 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: [CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53923,16 +57312,16 @@ type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1UpdatedByAndCreatedByManyToManyEdge { +"""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 `SowTab1`.""" - sowTab1SByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -53951,30 +57340,30 @@ 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 `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -"""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 `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyConnection { """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 `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -53983,16 +57372,16 @@ 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 `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 `SowTab1`.""" - sowTab1SByArchivedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54011,32 +57400,32 @@ 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 `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab1`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. """ -type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection { +type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { """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. + A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54048,17 +57437,17 @@ type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyConnection { } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab1`. +A `ApplicationSowData` edge in the connection, with data from `SowTab7`. """ -type CcbcUserApplicationSowDataBySowTab1ArchivedByAndSowIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { """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( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -54077,30 +57466,30 @@ 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 `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyConnection { """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 `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54109,16 +57498,16 @@ type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab1`.""" -type CcbcUserCcbcUsersBySowTab1ArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByCreatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54137,30 +57526,30 @@ 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 `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + filter: SowTab7Filter + ): SowTab7SConnection! } -"""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 `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyConnection { """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 `SowTab7`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab1ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54169,16 +57558,16 @@ 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 `SowTab7`.""" +type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab1`.""" - sowTab1SByUpdatedBy( + """Reads and enables pagination through a set of `SowTab7`.""" + sowTab7SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54197,54 +57586,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 `SowTab7`.""" + orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab1Condition + condition: SowTab7Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab1Filter - ): SowTab1SConnection! + 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 `SowTab8`. """ -type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection { + """A list of `ApplicationSowData` objects.""" + nodes: [ApplicationSowData]! """ - A list of edges which contains the `Application`, info from the `ProjectInformationData`, 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: [CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """ + The count of *all* `ApplicationSowData` you could get from the connection. + """ totalCount: Int! } """ -A `Application` edge in the connection, with data from `ProjectInformationData`. +A `ApplicationSowData` edge in the connection, with data from `SowTab8`. """ -type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `ApplicationSowData` at the end of the edge.""" + node: ApplicationSowData - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByApplicationId( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -54263,32 +57652,30 @@ type CcbcUserApplicationsByProjectInformationDataCreatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyConnection { +"""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 `ProjectInformationData`, 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: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54297,20 +57684,16 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyCon totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `ProjectInformationData`. - """ - projectInformationDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54329,32 +57712,30 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndUpdatedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyConnection { +"""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 `ProjectInformationData`, 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: [CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54363,20 +57744,16 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `ProjectInformationData`. - """ - projectInformationDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54395,54 +57772,54 @@ type CcbcUserCcbcUsersByProjectInformationDataCreatedByAndArchivedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection { + """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 `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge!]! """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 `SowTab8`. """ -type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { """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 `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -54461,32 +57838,30 @@ type CcbcUserApplicationsByProjectInformationDataUpdatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ProjectInformationData`. -""" -type CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyConnection { +"""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 `ProjectInformationData`, 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: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54495,20 +57870,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 `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 `ProjectInformationData`. - """ - projectInformationDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54527,32 +57898,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 `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -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 `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyConnection { """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 `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54561,20 +57930,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 `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 `ProjectInformationData`. - """ - projectInformationDataByArchivedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54593,54 +57958,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 `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `Application` values, with data from `ProjectInformationData`. +A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. """ -type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection { + """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 `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge!]! """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 `SowTab8`. """ -type CcbcUserApplicationsByProjectInformationDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { """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 `SowTab8`.""" + sowTab8SBySowId( """Only read the first `n` values of the set.""" first: Int @@ -54659,32 +58024,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 `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -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 `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyConnection { """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 `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54693,20 +58056,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 `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByCreatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54725,32 +58084,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 `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } -""" -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 `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyConnection { """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 `SowTab8`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54759,20 +58116,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 `SowTab8`.""" +type CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ProjectInformationData`. - """ - projectInformationDataByUpdatedBy( + """Reads and enables pagination through a set of `SowTab8`.""" + sowTab8SByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54791,54 +58144,52 @@ type CcbcUserCcbcUsersByProjectInformationDataArchivedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ProjectInformationData`.""" - orderBy: [ProjectInformationDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `SowTab8`.""" + orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ProjectInformationDataCondition + condition: SowTab8Condition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ProjectInformationDataFilter - ): ProjectInformationDataConnection! + filter: SowTab8Filter + ): SowTab8SConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyConnection { - """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 `SowTab7`, 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: [CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge!]! + 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 `SowTab7`. +A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { +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 `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -54857,30 +58208,32 @@ type CcbcUserApplicationSowDataBySowTab7CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54889,16 +58242,18 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `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 `SowTab7`.""" - sowTab7SByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -54917,30 +58272,32 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -54949,16 +58306,18 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab7`.""" -type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `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 `SowTab7`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -54977,54 +58336,52 @@ type CcbcUserCcbcUsersBySowTab7CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyConnection { - """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 `SowTab7`, 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: [CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge!]! + 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 `SowTab7`. +A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { +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 `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55043,30 +58400,32 @@ type CcbcUserApplicationSowDataBySowTab7UpdatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""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 `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55075,16 +58434,18 @@ 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 `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 `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55103,30 +58464,32 @@ type CcbcUserCcbcUsersBySowTab7UpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""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 `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55135,16 +58498,18 @@ 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 `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 `SowTab7`.""" - sowTab7SByArchivedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55163,54 +58528,52 @@ 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 `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab7`. +A connection to a list of `Application` values, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `ApplicationSowData`, info from the `SowTab7`, 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: [CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """ - The count of *all* `ApplicationSowData` you could get from the connection. - """ + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } """ -A `ApplicationSowData` edge in the connection, with data from `SowTab7`. +A `Application` edge in the connection, with data from `ChangeRequestData`. """ -type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `ApplicationSowData` at the end of the edge.""" - node: ApplicationSowData + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SBySowId( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55229,30 +58592,32 @@ type CcbcUserApplicationSowDataBySowTab7ArchivedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""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 `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55261,16 +58626,18 @@ 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 `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByCreatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55289,30 +58656,32 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + filter: ChangeRequestDataFilter + ): ChangeRequestDataConnection! } -"""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 `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection { """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 `ChangeRequestData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55321,16 +58690,18 @@ 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 `ChangeRequestData`. +""" +type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `SowTab7`.""" - sowTab7SByUpdatedBy( + """Reads and enables pagination through a set of `ChangeRequestData`.""" + changeRequestDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55349,54 +58720,54 @@ type CcbcUserCcbcUsersBySowTab7ArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab7`.""" - orderBy: [SowTab7SOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ChangeRequestData`.""" + orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab7Condition + condition: ChangeRequestDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab7Filter - ): SowTab7SConnection! + 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 `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection { + """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge { """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 `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55415,30 +58786,34 @@ type CcbcUserApplicationSowDataBySowTab8CreatedByAndSowIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55447,16 +58822,20 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +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 `SowTab8`.""" - sowTab8SByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55475,30 +58854,34 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } -"""A connection to a list of `CcbcUser` values, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { +""" +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55507,16 +58890,20 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `SowTab8`.""" -type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +""" +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 `SowTab8`.""" - sowTab8SByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55535,54 +58922,56 @@ type CcbcUserCcbcUsersBySowTab8CreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `SowTab8`.""" - orderBy: [SowTab8SOrderBy!] = [PRIMARY_KEY_ASC] + """ + The method to use when ordering `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection { + """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationSowDataBySowTab8UpdatedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge { """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 `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55601,30 +58990,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } -"""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 `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55633,16 +59026,20 @@ 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 `ApplicationCommunityProgressReportData`. +""" +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 `SowTab8`.""" - sowTab8SByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55661,30 +59058,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } -"""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 `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8UpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55693,16 +59094,20 @@ 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 `ApplicationCommunityProgressReportData`. +""" +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 `SowTab8`.""" - sowTab8SByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -55721,54 +59126,56 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } """ -A connection to a list of `ApplicationSowData` values, with data from `SowTab8`. +A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyConnection { - """A list of `ApplicationSowData` objects.""" - nodes: [ApplicationSowData]! +type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection { + """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge!]! """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 `ApplicationCommunityProgressReportData`. """ -type CcbcUserApplicationSowDataBySowTab8ArchivedByAndSowIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge { """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 `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55787,30 +59194,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } -"""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 `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55819,16 +59230,20 @@ 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 `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 `SowTab8`.""" - sowTab8SByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55847,30 +59262,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + filter: ApplicationCommunityProgressReportDataFilter + ): ApplicationCommunityProgressReportDataConnection! } -"""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 `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationCommunityProgressReportData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersBySowTab8ArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55879,16 +59298,20 @@ 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 `ApplicationCommunityProgressReportData`. +""" +type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge { """A cursor 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 `ApplicationCommunityProgressReportData`. + """ + applicationCommunityProgressReportDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -55907,32 +59330,34 @@ 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 `ApplicationCommunityProgressReportData`. + """ + orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: SowTab8Condition + condition: ApplicationCommunityProgressReportDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: SowTab8Filter - ): SowTab8SConnection! + 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 `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -55942,17 +59367,19 @@ type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyC } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge { """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 `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -55971,32 +59398,32 @@ type CcbcUserApplicationsByChangeRequestDataCreatedByAndApplicationIdManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56006,17 +59433,19 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyConnecti } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56035,32 +59464,32 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56070,17 +59499,19 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56099,32 +59530,32 @@ type CcbcUserCcbcUsersByChangeRequestDataCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56134,17 +59565,19 @@ type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyC } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByChangeRequestDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge { """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 `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56163,32 +59596,32 @@ 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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56198,17 +59631,19 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyConnecti } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor 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 `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56227,32 +59662,32 @@ 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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56262,17 +59697,19 @@ type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByChangeRequestDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56291,32 +59728,32 @@ 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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ChangeRequestData`. +A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection { """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 `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56326,17 +59763,19 @@ type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToMany } """ -A `Application` edge in the connection, with data from `ChangeRequestData`. +A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge { """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 `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56355,32 +59794,32 @@ type CcbcUserApplicationsByChangeRequestDataArchivedByAndApplicationIdManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ChangeRequestData`.""" - orderBy: [ChangeRequestDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56390,17 +59829,19 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56419,32 +59860,32 @@ 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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ChangeRequestData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ChangeRequestData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56454,17 +59895,19 @@ type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyConnect } """ -A `CcbcUser` edge in the connection, with data from `ChangeRequestData`. +A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. """ -type CcbcUserCcbcUsersByChangeRequestDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ChangeRequestData`.""" - changeRequestDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + """ + applicationCommunityReportExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56483,32 +59926,32 @@ 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 `ApplicationCommunityReportExcelData`.""" + orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ChangeRequestDataCondition + condition: ApplicationCommunityReportExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ChangeRequestDataFilter - ): ChangeRequestDataConnection! + filter: ApplicationCommunityReportExcelDataFilter + ): ApplicationCommunityReportExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection { """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. + A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56518,19 +59961,17 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApp } """ -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56549,34 +59990,32 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataCreatedByAndApp """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56586,19 +60025,17 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdate } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56617,34 +60054,32 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndUpdate """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56654,19 +60089,17 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchiv } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataCreatedByAndArchivedByManyToManyEdge { +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 `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56685,34 +60118,32 @@ 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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection { """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. + A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56722,19 +60153,17 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApp } """ -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56753,34 +60182,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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56790,19 +60217,17 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreate } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -56821,34 +60246,32 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndCreate """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56858,19 +60281,17 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchiv } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataUpdatedByAndArchivedByManyToManyEdge { +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 `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByArchivedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -56889,34 +60310,32 @@ 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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection { """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. + A list of edges which contains the `Application`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56926,19 +60345,17 @@ type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndAp } """ -A `Application` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `Application` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserApplicationsByApplicationCommunityProgressReportDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge { """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 `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByApplicationId( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -56957,34 +60374,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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -56994,19 +60409,17 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreat } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByCreatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57025,34 +60438,32 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndCreat """Read all values in the set after (below) this cursor.""" after: Cursor - """ - The method to use when ordering `ApplicationCommunityProgressReportData`. - """ - orderBy: [ApplicationCommunityProgressReportDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityProgressReportData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationClaimsData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57062,19 +60473,17 @@ type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdat } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityProgressReportData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. """ -type CcbcUserCcbcUsersByApplicationCommunityProgressReportDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationCommunityProgressReportData`. - """ - applicationCommunityProgressReportDataByUpdatedBy( + """Reads and enables pagination through a set of `ApplicationClaimsData`.""" + applicationClaimsDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57093,34 +60502,32 @@ 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 `ApplicationClaimsData`.""" + orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityProgressReportDataCondition + condition: ApplicationClaimsDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityProgressReportDataFilter - ): ApplicationCommunityProgressReportDataConnection! + filter: ApplicationClaimsDataFilter + ): ApplicationClaimsDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57130,9 +60537,9 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplic } """ -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57140,9 +60547,9 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplic node: Application """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationCommunityReportExcelDataByApplicationId( + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -57161,32 +60568,32 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataCreatedByAndApplic """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57196,9 +60603,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57206,9 +60613,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationCommunityReportExcelDataByUpdatedBy( + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57227,32 +60634,32 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndUpdatedBy """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57262,9 +60669,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57272,9 +60679,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataCreatedByAndArchivedB node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationCommunityReportExcelDataByArchivedBy( + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57293,32 +60700,32 @@ 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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57328,9 +60735,9 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplic } """ -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57338,9 +60745,9 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataUpdatedByAndApplic node: Application """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationCommunityReportExcelDataByApplicationId( + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -57359,32 +60766,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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57394,9 +60801,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57404,9 +60811,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndCreatedBy node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationCommunityReportExcelDataByCreatedBy( + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57425,32 +60832,32 @@ 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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57460,9 +60867,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57470,9 +60877,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedB node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationCommunityReportExcelDataByArchivedBy( + applicationClaimsExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57491,32 +60898,32 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataUpdatedByAndArchivedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationCommunityReportExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57526,9 +60933,9 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndAppli } """ -A `Application` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57536,9 +60943,9 @@ type CcbcUserApplicationsByApplicationCommunityReportExcelDataArchivedByAndAppli node: Application """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationCommunityReportExcelDataByApplicationId( + applicationClaimsExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -57557,32 +60964,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 `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57592,9 +60999,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57602,9 +61009,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedB node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationCommunityReportExcelDataByCreatedBy( + applicationClaimsExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57623,32 +61030,32 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndCreatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + filter: ApplicationClaimsExcelDataFilter + ): ApplicationClaimsExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationCommunityReportExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationClaimsExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57658,9 +61065,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedB } """ -A `CcbcUser` edge in the connection, with data from `ApplicationCommunityReportExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. """ -type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -57668,9 +61075,9 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedB node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationCommunityReportExcelData`. + Reads and enables pagination through a set of `ApplicationClaimsExcelData`. """ - applicationCommunityReportExcelDataByUpdatedBy( + applicationClaimsExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57689,32 +61096,32 @@ type CcbcUserCcbcUsersByApplicationCommunityReportExcelDataArchivedByAndUpdatedB """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationCommunityReportExcelData`.""" - orderBy: [ApplicationCommunityReportExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationClaimsExcelData`.""" + orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationCommunityReportExcelDataCondition + condition: ApplicationClaimsExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationCommunityReportExcelDataFilter - ): ApplicationCommunityReportExcelDataConnection! + 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 `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection { """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 `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57724,17 +61131,19 @@ type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToM } """ -A `Application` edge in the connection, with data from `ApplicationClaimsData`. +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge { """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 `ApplicationMilestoneData`. + """ + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -57753,32 +61162,32 @@ type CcbcUserApplicationsByApplicationClaimsDataCreatedByAndApplicationIdManyToM """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57788,17 +61197,19 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyConn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -57817,32 +61228,32 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndUpdatedByManyToManyEdge """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57852,17 +61263,19 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge { """A cursor 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 `ApplicationMilestoneData`. + """ + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -57881,32 +61294,32 @@ type CcbcUserCcbcUsersByApplicationClaimsDataCreatedByAndArchivedByManyToManyEdg """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsData`.""" - orderBy: [ApplicationClaimsDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection { """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 `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57916,17 +61329,19 @@ type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToM } """ -A `Application` edge in the connection, with data from `ApplicationClaimsData`. +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationClaimsDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `Application` at the end of the edge.""" node: Application - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByApplicationId( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -57945,32 +61360,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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -57980,17 +61395,19 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyConn } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58009,32 +61426,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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58044,17 +61461,19 @@ type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58073,32 +61492,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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsData`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection { """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 `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58108,17 +61527,19 @@ type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyTo } """ -A `Application` edge in the connection, with data from `ApplicationClaimsData`. +A `Application` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserApplicationsByApplicationClaimsDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge { """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 `ApplicationMilestoneData`. + """ + applicationMilestoneDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58137,32 +61558,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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58172,17 +61593,19 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58201,32 +61624,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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58236,17 +61659,19 @@ type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyCon } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. """ -type CcbcUserCcbcUsersByApplicationClaimsDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `ApplicationClaimsData`.""" - applicationClaimsDataByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationMilestoneData`. + """ + applicationMilestoneDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58265,32 +61690,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 `ApplicationMilestoneData`.""" + orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsDataCondition + condition: ApplicationMilestoneDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsDataFilter - ): ApplicationClaimsDataConnection! + filter: ApplicationMilestoneDataFilter + ): ApplicationMilestoneDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection { """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 `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58300,9 +61725,9 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdMa } """ -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58310,9 +61735,9 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdMa node: Application """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationClaimsExcelDataByApplicationId( + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58331,32 +61756,32 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataCreatedByAndApplicationIdMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58366,9 +61791,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58376,9 +61801,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToMan node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationClaimsExcelDataByUpdatedBy( + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58397,32 +61822,32 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndUpdatedByManyToMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58432,9 +61857,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58442,9 +61867,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationClaimsExcelDataByArchivedBy( + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58463,32 +61888,32 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataCreatedByAndArchivedByManyToMa """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationClaimsExcelData`.""" - orderBy: [ApplicationClaimsExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection { """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 `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58498,9 +61923,9 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdMa } """ -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58508,9 +61933,9 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataUpdatedByAndApplicationIdMa node: Application """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationClaimsExcelDataByApplicationId( + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58529,32 +61954,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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58564,9 +61989,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToMan } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58574,9 +61999,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndCreatedByManyToMan node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationClaimsExcelDataByCreatedBy( + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58595,32 +62020,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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58630,9 +62055,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58640,9 +62065,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataUpdatedByAndArchivedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationClaimsExcelDataByArchivedBy( + applicationMilestoneExcelDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58661,32 +62086,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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection { """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 `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58696,9 +62121,9 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdM } """ -A `Application` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58706,9 +62131,9 @@ type CcbcUserApplicationsByApplicationClaimsExcelDataArchivedByAndApplicationIdM node: Application """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationClaimsExcelDataByApplicationId( + applicationMilestoneExcelDataByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -58727,32 +62152,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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58762,9 +62187,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58772,9 +62197,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndCreatedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationClaimsExcelDataByCreatedBy( + applicationMilestoneExcelDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58793,32 +62218,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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationClaimsExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationClaimsExcelData`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `ApplicationMilestoneExcelData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58828,9 +62253,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToMa } """ -A `CcbcUser` edge in the connection, with data from `ApplicationClaimsExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. """ -type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -58838,9 +62263,9 @@ type CcbcUserCcbcUsersByApplicationClaimsExcelDataArchivedByAndUpdatedByManyToMa node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationClaimsExcelData`. + Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. """ - applicationClaimsExcelDataByUpdatedBy( + applicationMilestoneExcelDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58859,54 +62284,50 @@ 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 `ApplicationMilestoneExcelData`.""" + orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationClaimsExcelDataCondition + condition: ApplicationMilestoneExcelDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationClaimsExcelDataFilter - ): ApplicationClaimsExcelDataConnection! + filter: ApplicationMilestoneExcelDataFilter + ): ApplicationMilestoneExcelDataConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, 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: [CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. -""" -type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByApplicationId( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -58925,32 +62346,32 @@ type CcbcUserApplicationsByApplicationMilestoneDataCreatedByAndApplicationIdMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { """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 `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -58959,20 +62380,16 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyC totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyEdge { +"""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 `ApplicationMilestoneData`. - """ - applicationMilestoneDataByUpdatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -58991,32 +62408,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndUpdatedByManyToManyE """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { """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 `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59025,20 +62442,16 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByArchivedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59057,54 +62470,50 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataCreatedByAndArchivedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationMilestoneData`, 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: [CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. -""" -type CcbcUserApplicationsByApplicationMilestoneDataUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByApplicationId( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59123,32 +62532,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 `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { """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 `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59157,20 +62566,16 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyC totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndCreatedByManyToManyEdge { +"""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 `ApplicationMilestoneData`. - """ - applicationMilestoneDataByCreatedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59189,32 +62594,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 `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `CbcProject`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { """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 `CbcProject`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59223,20 +62628,16 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. -""" -type CcbcUserCcbcUsersByApplicationMilestoneDataUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" +type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. - """ - applicationMilestoneDataByArchivedBy( + """Reads and enables pagination through a set of `CbcProject`.""" + cbcProjectsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59255,32 +62656,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 `CbcProject`.""" + orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: CbcProjectCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: CbcProjectFilter + ): CbcProjectsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneData`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection { """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59290,9 +62691,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdMan } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneData`. +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59300,9 +62701,9 @@ type CcbcUserApplicationsByApplicationMilestoneDataArchivedByAndApplicationIdMan node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationMilestoneDataByApplicationId( + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59321,32 +62722,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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59356,9 +62757,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59366,9 +62767,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndCreatedByManyToMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationMilestoneDataByCreatedBy( + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59387,32 +62788,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 `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59422,9 +62823,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToMany } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59432,9 +62833,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToMany node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationMilestoneDataByUpdatedBy( + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59453,32 +62854,32 @@ type CcbcUserCcbcUsersByApplicationMilestoneDataArchivedByAndUpdatedByManyToMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneData`.""" - orderBy: [ApplicationMilestoneDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationInternalDescription`.""" + orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneDataCondition + condition: ApplicationInternalDescriptionCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneDataFilter - ): ApplicationMilestoneDataConnection! + filter: ApplicationInternalDescriptionFilter + ): ApplicationInternalDescriptionsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection { """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. + A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59488,9 +62889,9 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationI } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59498,9 +62899,9 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationI node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationMilestoneExcelDataByApplicationId( + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59519,32 +62920,32 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataCreatedByAndApplicationI """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection { """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: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59554,9 +62955,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59564,9 +62965,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndUpdatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationMilestoneExcelDataByUpdatedBy( + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59585,32 +62986,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 `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 CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection { """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: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59620,9 +63021,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59630,9 +63031,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataCreatedByAndArchivedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationMilestoneExcelDataByArchivedBy( + applicationInternalDescriptionsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -59651,32 +63052,32 @@ 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 `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 `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection { """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. + A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59686,9 +63087,9 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationI } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Application` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59696,9 +63097,9 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataUpdatedByAndApplicationI node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationMilestoneExcelDataByApplicationId( + applicationInternalDescriptionsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59717,32 +63118,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 `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 CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection { """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: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59752,9 +63153,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyTo } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59762,9 +63163,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndCreatedByManyTo node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationMilestoneExcelDataByCreatedBy( + applicationInternalDescriptionsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59783,32 +63184,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 `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 CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection { """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: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59818,9 +63219,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59828,9 +63229,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataUpdatedByAndArchivedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationInternalDescription`. """ - applicationMilestoneExcelDataByArchivedBy( + applicationInternalDescriptionsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59849,32 +63250,32 @@ 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 `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 `Application` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection { """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. + A list of edges which contains the `Application`, info from the `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59884,9 +63285,9 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplication } """ -A `Application` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `Application` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplicationIdManyToManyEdge { +type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59894,9 +63295,9 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplication node: Application """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationMilestoneExcelDataByApplicationId( + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -59915,32 +63316,32 @@ type CcbcUserApplicationsByApplicationMilestoneExcelDataArchivedByAndApplication """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationMilestoneExcelData`.""" - orderBy: [ApplicationMilestoneExcelDataOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -59950,9 +63351,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -59960,9 +63361,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndCreatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationMilestoneExcelDataByCreatedBy( + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -59981,32 +63382,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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationMilestoneExcelData`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60016,9 +63417,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyT } """ -A `CcbcUser` edge in the connection, with data from `ApplicationMilestoneExcelData`. +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyToManyEdge { +type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor @@ -60026,9 +63427,9 @@ type CcbcUserCcbcUsersByApplicationMilestoneExcelDataArchivedByAndUpdatedByManyT node: CcbcUser """ - Reads and enables pagination through a set of `ApplicationMilestoneExcelData`. + Reads and enables pagination through a set of `ApplicationProjectType`. """ - applicationMilestoneExcelDataByUpdatedBy( + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60047,50 +63448,54 @@ 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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationMilestoneExcelDataCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationMilestoneExcelDataFilter - ): ApplicationMilestoneExcelDataConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyConnection { - """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 `CbcProject`, 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: [CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge!]! + 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 `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationProjectType`. +""" +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 `CbcProject`.""" - cbcProjectsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60109,32 +63514,32 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60143,16 +63548,20 @@ type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectCreatedByAndArchivedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60171,32 +63580,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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60205,16 +63614,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 `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60233,50 +63646,54 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `Application` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyConnection { - """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 `CbcProject`, 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: [CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge!]! + 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 `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationProjectType`. +""" +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 `CbcProject`.""" - cbcProjectsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60295,32 +63712,32 @@ type CcbcUserCcbcUsersByCbcProjectUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `CbcProject`.""" - orderBy: [CbcProjectsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection { """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60329,16 +63746,20 @@ type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `CbcProject`.""" -type CcbcUserCcbcUsersByCbcProjectArchivedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60357,32 +63778,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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + filter: ApplicationProjectTypeFilter + ): ApplicationProjectTypesConnection! } """ -A connection to a list of `CcbcUser` values, with data from `CbcProject`. +A connection to a list of `CcbcUser` values, with data from `ApplicationProjectType`. """ -type CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection { """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 `ApplicationProjectType`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByCbcProjectArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60391,16 +63812,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 `ApplicationProjectType`. +""" +type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `CbcProject`.""" - cbcProjectsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationProjectType`. + """ + applicationProjectTypesByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60419,54 +63844,50 @@ 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 `ApplicationProjectType`.""" + orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: CbcProjectCondition + condition: ApplicationProjectTypeCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: CbcProjectFilter - ): CbcProjectsConnection! + 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 `EmailRecord`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, 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: [CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByApplicationId( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60485,32 +63906,32 @@ type CcbcUserApplicationsByApplicationInternalDescriptionCreatedByAndApplication """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationInternalDescription`.""" - orderBy: [ApplicationInternalDescriptionsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { """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 `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60519,20 +63940,16 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyT totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByUpdatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60551,32 +63968,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 `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { """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 `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60585,20 +64002,16 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60617,54 +64030,50 @@ 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 `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { + """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 `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge!]! """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`. -""" -type CcbcUserApplicationsByApplicationInternalDescriptionUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { """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( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -60683,32 +64092,32 @@ 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 `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { """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 `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60717,20 +64126,16 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyT totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByCreatedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60749,32 +64154,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 `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `EmailRecord`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { """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 `EmailRecord`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60783,20 +64188,16 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" +type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByArchivedBy( + """Reads and enables pagination through a set of `EmailRecord`.""" + emailRecordsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -60815,32 +64216,32 @@ 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 `EmailRecord`.""" + orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: EmailRecordCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: EmailRecordFilter + ): EmailRecordsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationInternalDescription`. +A connection to a list of `Application` values, with data from `Notification`. """ -type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection { """A list of `Application` objects.""" nodes: [Application]! """ - A list of edges which contains the `Application`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60849,20 +64250,16 @@ type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicatio totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type CcbcUserApplicationsByApplicationInternalDescriptionArchivedByAndApplicationIdManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { """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 `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByApplicationId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -60881,54 +64278,50 @@ 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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyConnection { - """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 `ApplicationInternalDescription`, 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: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge!]! + 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 `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndCreatedByManyToManyEdge { +"""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 `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -60947,32 +64340,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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `ApplicationInternalDescription`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationInternalDescription`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -60981,20 +64374,16 @@ type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationInternalDescription`. -""" -type CcbcUserCcbcUsersByApplicationInternalDescriptionArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `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 `ApplicationInternalDescription`. - """ - applicationInternalDescriptionsByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61013,54 +64402,50 @@ 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 `Notification`.""" + orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationInternalDescriptionCondition + condition: NotificationCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationInternalDescriptionFilter - ): ApplicationInternalDescriptionsConnection! + filter: NotificationFilter + ): NotificationsConnection! } """ -A connection to a list of `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { + """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 `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge!]! """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 CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { """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 `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61079,54 +64464,50 @@ type CcbcUserApplicationsByApplicationProjectTypeCreatedByAndApplicationIdManyTo """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 `Application` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyConnection { - """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 `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: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge!]! + 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 `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndUpdatedByManyToManyEdge { +"""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 `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61145,54 +64526,50 @@ 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 `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 CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyConnection { - """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 `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: [CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge!]! + 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 `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeCreatedByAndArchivedByManyToManyEdge { +"""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 `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -61211,54 +64588,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 `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 `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `CcbcUser` values, with data from `Notification`. """ -type CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { + """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 `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationProjectTypeUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! """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 `Notification`.""" +type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { """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 `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61277,32 +64650,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 `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 `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { """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 `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61311,20 +64684,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 `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 `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61343,54 +64712,50 @@ 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 `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 `Application` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { + """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: [CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeUpdatedByAndArchivedByManyToManyEdge { +"""A `Application` edge in the connection, with data from `Notification`.""" +type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByArchivedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61409,54 +64774,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 `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 `Application` values, with data from `ApplicationProjectType`. +A connection to a list of `EmailRecord` values, with data from `Notification`. """ -type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection { + """A list of `EmailRecord` objects.""" + nodes: [EmailRecord]! """ - A list of edges which contains the `Application`, info from the `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: [CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `EmailRecord` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyToManyEdge { +"""A `EmailRecord` edge in the connection, with data from `Notification`.""" +type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `EmailRecord` at the end of the edge.""" + node: EmailRecord - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByApplicationId( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByEmailRecordId( """Only read the first `n` values of the set.""" first: Int @@ -61475,32 +64836,32 @@ type CcbcUserApplicationsByApplicationProjectTypeArchivedByAndApplicationIdManyT """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { """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 `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61509,20 +64870,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByCreatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61541,32 +64898,32 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndCreatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 `CcbcUser` values, with data from `Notification`. """ -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { """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 `Notification`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61575,20 +64932,16 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyCo totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationProjectType`. -""" -type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Notification`.""" +type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationProjectType`. - """ - applicationProjectTypesByUpdatedBy( + """Reads and enables pagination through a set of `Notification`.""" + notificationsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61607,50 +64960,54 @@ type CcbcUserCcbcUsersByApplicationProjectTypeArchivedByAndUpdatedByManyToManyEd """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationProjectType`.""" - orderBy: [ApplicationProjectTypesOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection { + """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge!]! """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 CcbcUserCcbcUsersByEmailRecordCreatedByAndUpdatedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge { """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`.""" - emailRecordsByUpdatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61669,32 +65026,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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61703,16 +65060,20 @@ 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 `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61731,32 +65092,32 @@ 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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61765,16 +65126,20 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `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 `EmailRecord`.""" - emailRecordsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61793,50 +65158,54 @@ type CcbcUserCcbcUsersByEmailRecordUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `EmailRecord`.""" - orderBy: [EmailRecordsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection { + """A list of `Application` objects.""" + nodes: [Application]! """ - A list of edges which contains the `CcbcUser`, info from the `EmailRecord`, 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: [CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Application` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `EmailRecord`.""" -type CcbcUserCcbcUsersByEmailRecordUpdatedByAndArchivedByManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Application` at the end of the edge.""" + node: Application - """Reads and enables pagination through a set of `EmailRecord`.""" - emailRecordsByArchivedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByApplicationId( """Only read the first `n` values of the set.""" first: Int @@ -61855,32 +65224,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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61889,16 +65258,20 @@ 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 `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 `EmailRecord`.""" - emailRecordsByCreatedBy( + """ + Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -61917,32 +65290,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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -A connection to a list of `CcbcUser` values, with data from `EmailRecord`. +A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. """ -type CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyConnection { +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { """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 `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByEmailRecordArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -61951,16 +65324,20 @@ 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 `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { """A cursor 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 `ApplicationPendingChangeRequest`. + """ + applicationPendingChangeRequestsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -61979,32 +65356,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 `ApplicationPendingChangeRequest`.""" + orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: EmailRecordCondition + condition: ApplicationPendingChangeRequestCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: EmailRecordFilter - ): EmailRecordsConnection! + filter: ApplicationPendingChangeRequestFilter + ): ApplicationPendingChangeRequestsConnection! } """ -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 CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnection { +type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection { """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: [CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62013,16 +65390,20 @@ type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyConnec totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { +""" +A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge { """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 @@ -62041,50 +65422,54 @@ type CcbcUserApplicationsByNotificationCreatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { + """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: [CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. +""" +type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { """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`. + """ + applicationPendingChangeRequestsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62103,32 +65488,32 @@ type CcbcUserEmailRecordsByNotificationCreatedByAndEmailRecordIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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 CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { +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: [CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62137,16 +65522,20 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { +""" +A `CcbcUser` edge in the connection, with data from `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 @@ -62165,32 +65554,30 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `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`. -""" -type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62199,16 +65586,16 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62227,50 +65614,48 @@ type CcbcUserCcbcUsersByNotificationCreatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `Application` values, with data from `Notification`. -""" -type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -"""A `Application` edge in the connection, with data from `Notification`.""" -type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcCreatedByAndArchivedByManyToManyEdge { """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 `Cbc`.""" + cbcsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62289,50 +65674,48 @@ type CcbcUserApplicationsByNotificationUpdatedByAndApplicationIdManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `EmailRecord` values, with data from `Notification`. -""" -type CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyConnection { + """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 `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationUpdatedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge!]! """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 `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndCreatedByManyToManyEdge { """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 `Cbc`.""" + cbcsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62351,32 +65734,30 @@ 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 `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62385,16 +65766,16 @@ 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 `Cbc`.""" +type CcbcUserCcbcUsersByCbcUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62413,32 +65794,30 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62447,16 +65826,16 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByArchivedBy( + """Reads and enables pagination through a set of `Cbc`.""" + cbcsByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62475,50 +65854,48 @@ type CcbcUserCcbcUsersByNotificationUpdatedByAndArchivedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `Application` values, with data from `Notification`. -""" -type CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `Cbc`.""" +type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyConnection { + """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 `Cbc`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByNotificationArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge!]! """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 `Cbc`.""" +type CcbcUserCcbcUsersByCbcArchivedByAndUpdatedByManyToManyEdge { """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 `Cbc`.""" + cbcsByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62537,50 +65914,48 @@ 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 `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcFilter + ): CbcsConnection! } -""" -A connection to a list of `EmailRecord` values, with data from `Notification`. -""" -type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyConnection { - """A list of `EmailRecord` objects.""" - nodes: [EmailRecord]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `EmailRecord`, info from the `Notification`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `EmailRecord` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -"""A `EmailRecord` edge in the connection, with data from `Notification`.""" -type CcbcUserEmailRecordsByNotificationArchivedByAndEmailRecordIdManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `EmailRecord` at the end of the edge.""" - node: EmailRecord + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `Notification`.""" - notificationsByEmailRecordId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -62599,50 +65974,48 @@ 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 `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - 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 `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataCreatedByAndProjectNumberManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc - """Reads and enables pagination through a set of `Notification`.""" - notificationsByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -62661,32 +66034,30 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndCreatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `Notification`. -""" -type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyConnection { """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 `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -62695,16 +66066,16 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyConnection { totalCount: Int! } -"""A `CcbcUser` edge in the connection, with data from `Notification`.""" -type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """Reads and enables pagination through a set of `Notification`.""" - notificationsByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62723,54 +66094,48 @@ type CcbcUserCcbcUsersByNotificationArchivedByAndUpdatedByManyToManyEdge { """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `Notification`.""" - orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: NotificationCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: NotificationFilter - ): NotificationsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataCreatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByApplicationId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -62789,54 +66154,48 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestCreatedByAndApplicatio """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataUpdatedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -62855,54 +66214,48 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndUpdatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataUpdatedByAndProjectNumberManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -62921,54 +66274,48 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestCreatedByAndArchivedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyConnection { + """A list of `CcbcUser` objects.""" + nodes: [CcbcUser]! """ - A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `CcbcUser` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicationIdManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataUpdatedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `CcbcUser` at the end of the edge.""" + node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByApplicationId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -62987,32 +66334,30 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestUpdatedByAndApplicatio """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63021,20 +66366,16 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByMany totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataUpdatedByAndArchivedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByArchivedBy( """Only read the first `n` values of the set.""" first: Int @@ -63053,54 +66394,48 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndCreatedByMany """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyConnection { - """A list of `CcbcUser` objects.""" - nodes: [CcbcUser]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `CcbcUser` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndCbcIdManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `CcbcUser` at the end of the edge.""" - node: CcbcUser + """The `Cbc` at the end of the edge.""" + node: Cbc - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByArchivedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCbcId( """Only read the first `n` values of the set.""" first: Int @@ -63119,54 +66454,48 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestUpdatedByAndArchivedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `Application` values, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyConnection { - """A list of `Application` objects.""" - nodes: [Application]! +"""A connection to a list of `Cbc` values, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyConnection { + """A list of `Cbc` objects.""" + nodes: [Cbc]! """ - A list of edges which contains the `Application`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `Cbc`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge!]! + edges: [CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! - """The count of *all* `Application` you could get from the connection.""" + """The count of *all* `Cbc` you could get from the connection.""" totalCount: Int! } -""" -A `Application` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicationIdManyToManyEdge { +"""A `Cbc` edge in the connection, with data from `CbcData`.""" +type CcbcUserCbcsByCbcDataArchivedByAndProjectNumberManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor - """The `Application` at the end of the edge.""" - node: Application + """The `Cbc` at the end of the edge.""" + node: Cbc - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByApplicationId( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByProjectNumber( """Only read the first `n` values of the set.""" first: Int @@ -63185,32 +66514,30 @@ type CcbcUserApplicationsByApplicationPendingChangeRequestArchivedByAndApplicati """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63219,20 +66546,16 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataArchivedByAndCreatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByCreatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByCreatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63251,32 +66574,30 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndCreatedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } -""" -A connection to a list of `CcbcUser` values, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyConnection { +"""A connection to a list of `CcbcUser` values, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyConnection { """A list of `CcbcUser` objects.""" nodes: [CcbcUser]! """ - A list of edges which contains the `CcbcUser`, info from the `ApplicationPendingChangeRequest`, and the cursor to aid in pagination. + A list of edges which contains the `CcbcUser`, info from the `CbcData`, and the cursor to aid in pagination. """ - edges: [CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge!]! + edges: [CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge!]! """Information to aid in pagination.""" pageInfo: PageInfo! @@ -63285,20 +66606,16 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByMan totalCount: Int! } -""" -A `CcbcUser` edge in the connection, with data from `ApplicationPendingChangeRequest`. -""" -type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByManyToManyEdge { +"""A `CcbcUser` edge in the connection, with data from `CbcData`.""" +type CcbcUserCcbcUsersByCbcDataArchivedByAndUpdatedByManyToManyEdge { """A cursor for use in pagination.""" cursor: Cursor """The `CcbcUser` at the end of the edge.""" node: CcbcUser - """ - Reads and enables pagination through a set of `ApplicationPendingChangeRequest`. - """ - applicationPendingChangeRequestsByUpdatedBy( + """Reads and enables pagination through a set of `CbcData`.""" + cbcDataByUpdatedBy( """Only read the first `n` values of the set.""" first: Int @@ -63317,19 +66634,19 @@ type CcbcUserCcbcUsersByApplicationPendingChangeRequestArchivedByAndUpdatedByMan """Read all values in the set after (below) this cursor.""" after: Cursor - """The method to use when ordering `ApplicationPendingChangeRequest`.""" - orderBy: [ApplicationPendingChangeRequestsOrderBy!] = [PRIMARY_KEY_ASC] + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] """ A condition to be used in determining which values should be returned by the collection. """ - condition: ApplicationPendingChangeRequestCondition + condition: CbcDataCondition """ A filter to be used in determining which values should be returned by the collection. """ - filter: ApplicationPendingChangeRequestFilter - ): ApplicationPendingChangeRequestsConnection! + filter: CbcDataFilter + ): CbcDataConnection! } """ @@ -64224,6 +67541,22 @@ type Mutation { input: CreateAttachmentInput! ): CreateAttachmentPayload + """Creates a single `Cbc`.""" + createCbc( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: CreateCbcInput! + ): CreateCbcPayload + + """Creates a single `CbcData`.""" + createCbcData( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: CreateCbcDataInput! + ): CreateCbcDataPayload + """Creates a single `CcbcUser`.""" createCcbcUser( """ @@ -64850,6 +68183,46 @@ type Mutation { input: UpdateAttachmentByRowIdInput! ): UpdateAttachmentPayload + """Updates a single `Cbc` using its globally unique id and a patch.""" + updateCbc( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: UpdateCbcInput! + ): UpdateCbcPayload + + """Updates a single `Cbc` using a unique key and a patch.""" + updateCbcByRowId( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: UpdateCbcByRowIdInput! + ): UpdateCbcPayload + + """Updates a single `Cbc` using a unique key and a patch.""" + updateCbcByProjectNumber( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: UpdateCbcByProjectNumberInput! + ): UpdateCbcPayload + + """Updates a single `CbcData` using its globally unique id and a patch.""" + updateCbcData( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: UpdateCbcDataInput! + ): UpdateCbcDataPayload + + """Updates a single `CbcData` using a unique key and a patch.""" + updateCbcDataByRowId( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: UpdateCbcDataByRowIdInput! + ): UpdateCbcDataPayload + """ Updates a single `CbcProject` using its globally unique id and a patch. """ @@ -65460,6 +68833,46 @@ type Mutation { input: DeleteAttachmentByRowIdInput! ): DeleteAttachmentPayload + """Deletes a single `Cbc` using its globally unique id.""" + deleteCbc( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: DeleteCbcInput! + ): DeleteCbcPayload + + """Deletes a single `Cbc` using a unique key.""" + deleteCbcByRowId( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: DeleteCbcByRowIdInput! + ): DeleteCbcPayload + + """Deletes a single `Cbc` using a unique key.""" + deleteCbcByProjectNumber( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: DeleteCbcByProjectNumberInput! + ): DeleteCbcPayload + + """Deletes a single `CbcData` using its globally unique id.""" + deleteCbcData( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: DeleteCbcDataInput! + ): DeleteCbcDataPayload + + """Deletes a single `CbcData` using a unique key.""" + deleteCbcDataByRowId( + """ + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + """ + input: DeleteCbcDataByRowIdInput! + ): DeleteCbcDataPayload + """Deletes a single `CcbcUser` using its globally unique id.""" deleteCcbcUser( """ @@ -67270,6 +70683,156 @@ input AttachmentInput { archivedAt: Datetime } +"""The output of our create `Cbc` mutation.""" +type CreateCbcPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """The `Cbc` that was created by this mutation.""" + cbc: Cbc + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByArchivedBy: CcbcUser + + """An edge for our `Cbc`. May be used by Relay 1.""" + cbcEdge( + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + ): CbcsEdge +} + +"""All input for the create `Cbc` mutation.""" +input CreateCbcInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """The `Cbc` to be created by this mutation.""" + cbc: CbcInput! +} + +"""An input for mutations affecting `Cbc`""" +input CbcInput { + """The project number, unique for each project""" + projectNumber: Int! + + """The timestamp of the last time the data was updated from sharepoint""" + sharepointTimestamp: Datetime + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime +} + +"""The output of our create `CbcData` mutation.""" +type CreateCbcDataPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """The `CbcData` that was created by this mutation.""" + cbcData: CbcData + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """Reads a single `Cbc` that is related to this `CbcData`.""" + cbcByCbcId: Cbc + + """Reads a single `Cbc` that is related to this `CbcData`.""" + cbcByProjectNumber: Cbc + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByArchivedBy: CcbcUser + + """An edge for our `CbcData`. May be used by Relay 1.""" + cbcDataEdge( + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + ): CbcDataEdge +} + +"""All input for the create `CbcData` mutation.""" +input CreateCbcDataInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """The `CbcData` to be created by this mutation.""" + cbcData: CbcDataInput! +} + +"""An input for mutations affecting `CbcData`""" +input CbcDataInput { + """ID of the cbc application this cbc_data belongs to""" + cbcId: Int + + """Column containing the project number the cbc application is from""" + projectNumber: Int + jsonData: JSON + sharepointTimestamp: Datetime + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime +} + """The output of our create `CcbcUser` mutation.""" type CreateCcbcUserPayload { """ @@ -71261,6 +74824,223 @@ input UpdateAttachmentByRowIdInput { rowId: Int! } +"""The output of our update `Cbc` mutation.""" +type UpdateCbcPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """The `Cbc` that was updated by this mutation.""" + cbc: Cbc + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByArchivedBy: CcbcUser + + """An edge for our `Cbc`. May be used by Relay 1.""" + cbcEdge( + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + ): CbcsEdge +} + +"""All input for the `updateCbc` mutation.""" +input UpdateCbcInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + The globally unique `ID` which will identify a single `Cbc` to be updated. + """ + id: ID! + + """ + An object where the defined keys will be set on the `Cbc` being updated. + """ + cbcPatch: CbcPatch! +} + +"""Represents an update to a `Cbc`. Fields that are set will be updated.""" +input CbcPatch { + """The project number, unique for each project""" + projectNumber: Int + + """The timestamp of the last time the data was updated from sharepoint""" + sharepointTimestamp: Datetime + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime +} + +"""All input for the `updateCbcByRowId` mutation.""" +input UpdateCbcByRowIdInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + An object where the defined keys will be set on the `Cbc` being updated. + """ + cbcPatch: CbcPatch! + + """Unique ID for the row""" + rowId: Int! +} + +"""All input for the `updateCbcByProjectNumber` mutation.""" +input UpdateCbcByProjectNumberInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + An object where the defined keys will be set on the `Cbc` being updated. + """ + cbcPatch: CbcPatch! + + """The project number, unique for each project""" + projectNumber: Int! +} + +"""The output of our update `CbcData` mutation.""" +type UpdateCbcDataPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """The `CbcData` that was updated by this mutation.""" + cbcData: CbcData + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """Reads a single `Cbc` that is related to this `CbcData`.""" + cbcByCbcId: Cbc + + """Reads a single `Cbc` that is related to this `CbcData`.""" + cbcByProjectNumber: Cbc + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByArchivedBy: CcbcUser + + """An edge for our `CbcData`. May be used by Relay 1.""" + cbcDataEdge( + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + ): CbcDataEdge +} + +"""All input for the `updateCbcData` mutation.""" +input UpdateCbcDataInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + The globally unique `ID` which will identify a single `CbcData` to be updated. + """ + id: ID! + + """ + An object where the defined keys will be set on the `CbcData` being updated. + """ + cbcDataPatch: CbcDataPatch! +} + +""" +Represents an update to a `CbcData`. Fields that are set will be updated. +""" +input CbcDataPatch { + """ID of the cbc application this cbc_data belongs to""" + cbcId: Int + + """Column containing the project number the cbc application is from""" + projectNumber: Int + jsonData: JSON + sharepointTimestamp: Datetime + + """created by user id""" + createdBy: Int + + """created at timestamp""" + createdAt: Datetime + + """updated by user id""" + updatedBy: Int + + """updated at timestamp""" + updatedAt: Datetime + + """archived by user id""" + archivedBy: Int + + """archived at timestamp""" + archivedAt: Datetime +} + +"""All input for the `updateCbcDataByRowId` mutation.""" +input UpdateCbcDataByRowIdInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + An object where the defined keys will be set on the `CbcData` being updated. + """ + cbcDataPatch: CbcDataPatch! + + """Unique ID for the cbc_data""" + rowId: Int! +} + """The output of our update `CbcProject` mutation.""" type UpdateCbcProjectPayload { """ @@ -71316,7 +75096,7 @@ input UpdateCbcProjectInput { Represents an update to a `CbcProject`. Fields that are set will be updated. """ input CbcProjectPatch { - """The data imported from the excel""" + """The data imported from the excel for that cbc project""" jsonData: JSON """The timestamp of the last time the data was updated from sharepoint""" @@ -74199,6 +77979,142 @@ input DeleteAttachmentByRowIdInput { rowId: Int! } +"""The output of our delete `Cbc` mutation.""" +type DeleteCbcPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """The `Cbc` that was deleted by this mutation.""" + cbc: Cbc + deletedCbcId: ID + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `Cbc`.""" + ccbcUserByArchivedBy: CcbcUser + + """An edge for our `Cbc`. May be used by Relay 1.""" + cbcEdge( + """The method to use when ordering `Cbc`.""" + orderBy: [CbcsOrderBy!] = [PRIMARY_KEY_ASC] + ): CbcsEdge +} + +"""All input for the `deleteCbc` mutation.""" +input DeleteCbcInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + The globally unique `ID` which will identify a single `Cbc` to be deleted. + """ + id: ID! +} + +"""All input for the `deleteCbcByRowId` mutation.""" +input DeleteCbcByRowIdInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """Unique ID for the row""" + rowId: Int! +} + +"""All input for the `deleteCbcByProjectNumber` mutation.""" +input DeleteCbcByProjectNumberInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """The project number, unique for each project""" + projectNumber: Int! +} + +"""The output of our delete `CbcData` mutation.""" +type DeleteCbcDataPayload { + """ + The exact same `clientMutationId` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + """ + clientMutationId: String + + """The `CbcData` that was deleted by this mutation.""" + cbcData: CbcData + deletedCbcDataId: ID + + """ + Our root query field type. Allows us to run any query from our mutation payload. + """ + query: Query + + """Reads a single `Cbc` that is related to this `CbcData`.""" + cbcByCbcId: Cbc + + """Reads a single `Cbc` that is related to this `CbcData`.""" + cbcByProjectNumber: Cbc + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByCreatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByUpdatedBy: CcbcUser + + """Reads a single `CcbcUser` that is related to this `CbcData`.""" + ccbcUserByArchivedBy: CcbcUser + + """An edge for our `CbcData`. May be used by Relay 1.""" + cbcDataEdge( + """The method to use when ordering `CbcData`.""" + orderBy: [CbcDataOrderBy!] = [PRIMARY_KEY_ASC] + ): CbcDataEdge +} + +"""All input for the `deleteCbcData` mutation.""" +input DeleteCbcDataInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """ + The globally unique `ID` which will identify a single `CbcData` to be deleted. + """ + id: ID! +} + +"""All input for the `deleteCbcDataByRowId` mutation.""" +input DeleteCbcDataByRowIdInput { + """ + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + """ + clientMutationId: String + + """Unique ID for the cbc_data""" + rowId: Int! +} + """The output of our delete `CcbcUser` mutation.""" type DeleteCcbcUserPayload { """ diff --git a/app/tests/backend/lib/excel_import/cbc_project.test.ts b/app/tests/backend/lib/excel_import/cbc_project.test.ts index f628f1a46c..91b60ff1ec 100644 --- a/app/tests/backend/lib/excel_import/cbc_project.test.ts +++ b/app/tests/backend/lib/excel_import/cbc_project.test.ts @@ -10,7 +10,7 @@ import LoadCbcProjectData from '../../../../backend/lib/excel_import/cbc_project const mockErrorData = { projectNumber: 9999, - orignalProjectNumber: undefined, + originalProjectNumber: undefined, phase: '4b', intake: undefined, projectStatus: 'Not Applicable', @@ -102,6 +102,16 @@ describe('cbc_project', () => { }, clientMutationId: '1', }, + cbcByProjectNumber: { + cbcDataByProjectNumber: { + nodes: [], + }, + }, + createCbc: { + cbc: { + rowId: 1, + }, + }, }, }; }); @@ -119,6 +129,16 @@ describe('cbc_project', () => { }, clientMutationId: '1', }, + cbcByProjectNumber: { + cbcDataByProjectNumber: { + nodes: [], + }, + }, + createCbc: { + cbc: { + rowId: 1, + }, + }, }, errorLog: [], }); @@ -189,6 +209,16 @@ describe('cbc_project', () => { }, clientMutationId: '1', }, + cbcByProjectNumber: { + cbcDataByProjectNumber: { + nodes: [], + }, + }, + createCbc: { + cbc: { + rowId: 1, + }, + }, }, }; }); @@ -205,6 +235,16 @@ describe('cbc_project', () => { }, clientMutationId: '1', }, + cbcByProjectNumber: { + cbcDataByProjectNumber: { + nodes: [], + }, + }, + createCbc: { + cbc: { + rowId: 1, + }, + }, }, errorLog: [ 'Project #9999: communitiesAndLocalesCount not imported due to formatting error - value should be a number', @@ -280,10 +320,8 @@ describe('cbc_project', () => { ]); const wb = XLSX.read(null); - let mockVariables; - mocked(performQuery).mockImplementation(async (id, variables) => { - mockVariables = variables; + mocked(performQuery).mockImplementation(async () => { return { data: { createCbcProject: { @@ -294,24 +332,41 @@ describe('cbc_project', () => { }, clientMutationId: '1', }, + cbcByProjectNumber: { + cbcDataByProjectNumber: { + nodes: [], + }, + }, + createCbc: { + cbc: { + rowId: 1, + }, + }, }, }; }); - await LoadCbcProjectData(wb, 'CBC Project', null, request); - - expect(mockVariables.input._jsonData[0].phase).toEqual('4b'); - expect(mockVariables.input._jsonData[0].projectStatus).toEqual( - 'Not Applicable' - ); - expect(mockVariables.input._jsonData[0].projectTitle).toEqual( - 'Program Fee (1%) - Community' - ); - expect(mockVariables.input._jsonData[0].applicantContractualName).toEqual( - 'Northern Development' - ); - expect(mockVariables.input._jsonData[0].currentOperatingName).toEqual( - 'Northern Development' + const result = (await LoadCbcProjectData( + wb, + 'CBC Project', + null, + request + )) as any; + expect(result.data.createCbcProject.cbcProject.jsonData[0].phase).toEqual( + '4b' ); + expect( + result.data.createCbcProject.cbcProject.jsonData[0].projectStatus + ).toEqual('Not Applicable'); + expect( + result.data.createCbcProject.cbcProject.jsonData[0].projectTitle + ).toEqual('Program Fee (1%) - Community'); + expect( + result.data.createCbcProject.cbcProject.jsonData[0] + .applicantContractualName + ).toEqual('Northern Development'); + expect( + result.data.createCbcProject.cbcProject.jsonData[0].currentOperatingName + ).toEqual('Northern Development'); }); }); diff --git a/app/tests/backend/lib/sharepoint.test.ts b/app/tests/backend/lib/sharepoint.test.ts index 9444d1678c..d2ae473c73 100644 --- a/app/tests/backend/lib/sharepoint.test.ts +++ b/app/tests/backend/lib/sharepoint.test.ts @@ -114,7 +114,27 @@ describe('The SharePoint API', () => { ); mocked(performQuery).mockImplementation(async () => { - return {}; + return { + data: { + createCbc: { + cbc: { + rowId: 1, + }, + }, + cbcByProjectNumber: { + cbcDataByProjectNumber: { + nodes: [], + }, + }, + createCbcProject: { + cbcProject: { + rowId: 1, + id: '1', + jsonData: [fakeSummary], + }, + }, + }, + }; }); mocked(getAuthRole).mockImplementation(() => { diff --git a/app/tests/components/Analyst/CBC/CbcChangeStatus.test.tsx b/app/tests/components/Analyst/CBC/CbcChangeStatus.test.tsx new file mode 100644 index 0000000000..16d7ad91ae --- /dev/null +++ b/app/tests/components/Analyst/CBC/CbcChangeStatus.test.tsx @@ -0,0 +1,293 @@ +import { graphql } from 'react-relay'; +import compiledQuery, { + CbcChangeStatusTestQuery, +} from '__generated__/CbcChangeStatusTestQuery.graphql'; +import { act, screen, fireEvent } from '@testing-library/react'; +import CbcChangeStatus from 'components/Analyst/CBC/CbcChangeStatus'; +import ComponentTestingHelper from '../../../utils/componentTestingHelper'; + +const testQuery = graphql` + query CbcChangeStatusTestQuery($rowId: Int!) { + cbcByRowId(rowId: $rowId) { + projectNumber + rowId + sharepointTimestamp + cbcDataByCbcId { + edges { + node { + jsonData + sharepointTimestamp + rowId + projectNumber + updatedAt + updatedBy + } + } + } + ...CbcChangeStatus_query + } + } +`; + +const mockQueryPayload = { + Query() { + return { + cbcByRowId: { + projectNumber: 5555, + rowId: 1, + sharepointTimestamp: '2024-10-01T00:00:00.000Z', + cbcDataByCbcId: { + edges: [ + { + node: { + jsonData: { + phase: 2, + intake: 1, + errorLog: [], + highwayKm: null, + projectType: 'Transport', + reviewNotes: 'Qtrly Report: Progress 0.39 -> 0.38', + transportKm: 124, + lastReviewed: '2023-07-11T00:00:00.000Z', + otherFunding: 265000, + projectTitle: 'Project 1', + dateAnnounced: '2019-07-02T00:00:00.000Z', + projectNumber: 5555, + projectStatus: 'Reporting Complete', + federalFunding: 555555, + householdCount: null, + applicantAmount: 555555, + bcFundingRequest: 5555555, + projectLocations: 'Location 1', + milestoneComments: 'Requested extension to March 31, 2024', + proposedStartDate: '2020-07-01T00:00:00.000Z', + primaryNewsRelease: + 'https://www.canada.ca/en/innovation-science-economic-development/news/2019/07/rural-communities-in-british-columbia-will-benefit-from-faster-internet.html', + projectDescription: 'Description 1', + totalProjectBudget: 5555555, + announcedByProvince: 'YES', + dateAgreementSigned: '2021-02-24T00:00:00.000Z', + changeRequestPending: 'No', + currentOperatingName: 'Internet company 1', + federalFundingSource: 'ISED-CTI', + transportProjectType: 'Fibre', + indigenousCommunities: 5, + proposedCompletionDate: '2023-03-31T00:00:00.000Z', + constructionCompletedOn: null, + dateApplicationReceived: null, + reportingCompletionDate: null, + applicantContractualName: 'Internet company 1', + dateConditionallyApproved: '2019-06-26T00:00:00.000Z', + eightThirtyMillionFunding: 'No', + projectMilestoneCompleted: 0.5, + communitiesAndLocalesCount: 5, + connectedCoastNetworkDependant: 'NO', + nditConditionalApprovalLetterSent: 'YES', + bindingAgreementSignedNditRecipient: 'YES', + }, + sharepointTimestamp: '2024-10-01T00:00:00.000Z', + rowId: 1, + projectNumber: 5555, + updatedAt: '2024-10-01T00:00:00.000Z', + updatedBy: 'test', + }, + }, + ], + }, + }, + cbcDataByCbcId: { + edges: [ + { + node: { + jsonData: { + phase: 2, + intake: 1, + errorLog: [], + highwayKm: null, + projectType: 'Transport', + reviewNotes: 'Qtrly Report: Progress 0.39 -> 0.38', + transportKm: 124, + lastReviewed: '2023-07-11T00:00:00.000Z', + otherFunding: 265000, + projectTitle: 'Project 1', + dateAnnounced: '2019-07-02T00:00:00.000Z', + projectNumber: 5555, + projectStatus: 'Reporting Complete', + federalFunding: 555555, + householdCount: null, + applicantAmount: 555555, + bcFundingRequest: 5555555, + projectLocations: 'Location 1', + milestoneComments: 'Requested extension to March 31, 2024', + proposedStartDate: '2020-07-01T00:00:00.000Z', + primaryNewsRelease: + 'https://www.canada.ca/en/innovation-science-economic-development/news/2019/07/rural-communities-in-british-columbia-will-benefit-from-faster-internet.html', + projectDescription: 'Description 1', + totalProjectBudget: 5555555, + announcedByProvince: 'YES', + dateAgreementSigned: '2021-02-24T00:00:00.000Z', + changeRequestPending: 'No', + currentOperatingName: 'Internet company 1', + federalFundingSource: 'ISED-CTI', + transportProjectType: 'Fibre', + indigenousCommunities: 5, + proposedCompletionDate: '2023-03-31T00:00:00.000Z', + constructionCompletedOn: null, + dateApplicationReceived: null, + reportingCompletionDate: null, + applicantContractualName: 'Internet company 1', + dateConditionallyApproved: '2019-06-26T00:00:00.000Z', + eightThirtyMillionFunding: 'No', + projectMilestoneCompleted: 0.5, + communitiesAndLocalesCount: 5, + connectedCoastNetworkDependant: 'NO', + nditConditionalApprovalLetterSent: 'YES', + bindingAgreementSignedNditRecipient: 'YES', + }, + sharepointTimestamp: '2024-10-01T00:00:00.000Z', + rowId: 1, + projectNumber: 5555, + updatedAt: '2024-10-01T00:00:00.000Z', + updatedBy: 'test', + }, + }, + ], + }, + }; + }, +}; + +const componentTestingHelper = + new ComponentTestingHelper({ + component: CbcChangeStatus as any, + testQuery, + compiledQuery, + defaultQueryResolver: mockQueryPayload, + getPropsFromTestQuery: (data) => ({ + cbcData: data, + status: + data.cbcByRowId.cbcDataByCbcId.edges[0].node.jsonData.projectStatus, + statusList: [ + { + description: 'Conditionally Approved', + name: 'conditionally_approved', + id: 1, + }, + { description: 'Reporting Complete', name: 'complete', id: 2 }, + { description: 'Agreement Signed', name: 'approved', id: 3 }, + ], + }), + }); + +describe('The application header component', () => { + beforeEach(() => { + componentTestingHelper.reinit(); + // externalComponentTestingHelper.reinit(); + }); + + it('displays the current cbc project status', () => { + componentTestingHelper.loadQuery(); + componentTestingHelper.renderComponent(); + + expect(screen.getByText('Reporting Complete')).toBeVisible(); + expect(screen.getByTestId('change-status')).toHaveValue('complete'); + }); + + it('has the correct style for the current status', () => { + componentTestingHelper.loadQuery(); + componentTestingHelper.renderComponent(); + + const select = screen.getByTestId('change-status'); + + expect(select).toHaveStyle(`color: #003366;`); + }); + + it('has the list of statuses', () => { + componentTestingHelper.loadQuery(); + componentTestingHelper.renderComponent(); + + expect(screen.getByText('Agreement Signed')).toBeInTheDocument(); + expect(screen.getByText('Reporting Complete')).toBeInTheDocument(); + expect(screen.getByText('Conditionally Approved')).toBeInTheDocument(); + }); + + it('Changes status depending on which status is selected', async () => { + componentTestingHelper.loadQuery(); + componentTestingHelper.renderComponent(); + + const select = screen.getByTestId('change-status'); + + await act(async () => { + fireEvent.change(select, { target: { value: 'approved' } }); + }); + await act(async () => { + componentTestingHelper.environment.mock.resolveMostRecentOperation({ + data: { + cbcDataByCbcId: { + jsonData: { + projectStatus: 'Agreement Signed', + }, + }, + }, + }); + }); + expect(screen.getByTestId('change-status')).toHaveValue('approved'); + + await act(async () => { + fireEvent.change(select, { target: { value: 'conditionally_approved' } }); + }); + await act(async () => { + componentTestingHelper.environment.mock.resolveMostRecentOperation({ + data: { + cbcDataByCbcId: { + jsonData: { + projectStatus: 'Conditionally Approved', + }, + }, + }, + }); + }); + expect(screen.getByTestId('change-status')).toHaveValue( + 'conditionally_approved' + ); + }); + + it('displays the confirmation modal and calls the mutation on save', async () => { + componentTestingHelper.loadQuery(); + componentTestingHelper.renderComponent(); + + const select = screen.getByTestId('change-status'); + + await act(async () => { + fireEvent.change(select, { target: { value: 'approved' } }); + }); + + componentTestingHelper.expectMutationToBeCalled( + 'updateCbcDataByRowIdMutation', + { + input: { + cbcDataPatch: { + jsonData: { + projectStatus: 'Agreement Signed', + }, + }, + }, + } + ); + + act(() => { + componentTestingHelper.environment.mock.resolveMostRecentOperation({ + data: { + cbcDataByCbcId: { + jsonData: { + projectStatus: 'Agreement Signed', + }, + }, + }, + }); + }); + + expect(screen.getByText('Agreement Signed')).toBeVisible(); + expect(screen.getByTestId('change-status')).toHaveValue('approved'); + }); +}); diff --git a/app/tests/pages/analyst/cbc/[cbcId].test.tsx b/app/tests/pages/analyst/cbc/[cbcId].test.tsx new file mode 100644 index 0000000000..920c79fd9f --- /dev/null +++ b/app/tests/pages/analyst/cbc/[cbcId].test.tsx @@ -0,0 +1,179 @@ +import Cbc from 'pages/analyst/cbc/[cbcId]'; +import { act, fireEvent, screen } from '@testing-library/react'; +import * as moduleApi from '@growthbook/growthbook-react'; +import compiledCbcIdQuery, { + CbcIdQuery, +} from '../../../../__generated__/CbcIdQuery.graphql'; +import PageTestingHelper from '../../../utils/pageTestingHelper'; + +const mockShowCbcEdit: moduleApi.FeatureResult = { + value: true, + source: 'defaultValue', + on: null, + off: null, + ruleId: 'show_cbc_edit', +}; + +const mockQueryPayload = { + Query() { + return { + cbcByRowId: { + projectNumber: 5555, + rowId: 1, + sharepointTimestamp: '2024-10-01T00:00:00.000Z', + cbcDataByCbcId: { + edges: [ + { + node: { + jsonData: { + phase: 2, + intake: 1, + errorLog: [], + highwayKm: null, + projectType: 'Transport', + reviewNotes: 'Qtrly Report: Progress 0.39 -> 0.38', + transportKm: 124, + lastReviewed: '2023-07-11T00:00:00.000Z', + otherFunding: 265000, + projectTitle: 'Project 1', + dateAnnounced: '2019-07-02T00:00:00.000Z', + projectNumber: 5555, + projectStatus: 'Reporting Complete', + federalFunding: 555555, + householdCount: null, + applicantAmount: 555555, + bcFundingRequest: 5555555, + projectLocations: 'Location 1', + milestoneComments: 'Requested extension to March 31, 2024', + proposedStartDate: '2020-07-01T00:00:00.000Z', + primaryNewsRelease: + 'https://www.canada.ca/en/innovation-science-economic-development/news/2019/07/rural-communities-in-british-columbia-will-benefit-from-faster-internet.html', + projectDescription: 'Description 1', + totalProjectBudget: 5555555, + announcedByProvince: 'YES', + dateAgreementSigned: '2021-02-24T00:00:00.000Z', + changeRequestPending: 'No', + currentOperatingName: 'Internet company 1', + federalFundingSource: 'ISED-CTI', + transportProjectType: 'Fibre', + indigenousCommunities: 5, + proposedCompletionDate: '2023-03-31T00:00:00.000Z', + constructionCompletedOn: null, + dateApplicationReceived: null, + reportingCompletionDate: null, + applicantContractualName: 'Internet company 1', + dateConditionallyApproved: '2019-06-26T00:00:00.000Z', + eightThirtyMillionFunding: 'No', + projectMilestoneCompleted: 0.5, + communitiesAndLocalesCount: 5, + connectedCoastNetworkDependant: 'NO', + nditConditionalApprovalLetterSent: 'YES', + bindingAgreementSignedNditRecipient: 'YES', + }, + sharepointTimestamp: '2024-10-01T00:00:00.000Z', + rowId: 1, + projectNumber: 5555, + updatedAt: '2024-10-01T00:00:00.000Z', + updatedBy: 'test', + }, + }, + ], + }, + }, + session: { + sub: '4e0ac88c-bf05-49ac-948f-7fd53c7a9fd6', + }, + }; + }, +}; + +const pageTestingHelper = new PageTestingHelper({ + pageComponent: Cbc, + compiledQuery: compiledCbcIdQuery, + defaultQueryResolver: mockQueryPayload, + defaultQueryVariables: { + rowId: 1, + }, +}); + +describe('Cbc', () => { + beforeEach(() => { + pageTestingHelper.reinit(); + pageTestingHelper.setMockRouterValues({ + query: { cbcId: '1' }, + }); + }); + it('should have the correct accordions', async () => { + pageTestingHelper.loadQuery(); + pageTestingHelper.renderPage(); + + expect(screen.getByText('Tombstone')).toBeInTheDocument(); + expect(screen.getByText('Project type')).toBeInTheDocument(); + expect(screen.getByText('Locations and counts')).toBeInTheDocument(); + expect(screen.getByText('Funding')).toBeInTheDocument(); + expect(screen.getByText('Events and dates')).toBeInTheDocument(); + expect(screen.getByText('Miscellaneous')).toBeInTheDocument(); + expect(screen.getByText('Project data reviews')).toBeInTheDocument(); + }); + it('should have the correct header data', async () => { + pageTestingHelper.loadQuery(); + pageTestingHelper.renderPage(); + + // left side of header + expect(screen.getByRole('heading', { name: '5555' })).toBeInTheDocument(); + expect( + screen.getByRole('heading', { name: 'Project 1' }) + ).toBeInTheDocument(); + expect( + screen.getByRole('heading', { name: 'Internet company 1' }) + ).toBeInTheDocument(); + // right side (editable) of header + expect(screen.getByLabelText('Status')).toBeInTheDocument(); + expect(screen.getByLabelText('Status')).toHaveValue('complete'); + expect(screen.getByLabelText('Phase')).toBeInTheDocument(); + expect(screen.getByLabelText('Phase')).toHaveValue('2'); + expect(screen.getByLabelText('Intake')).toBeInTheDocument(); + expect(screen.getByLabelText('Intake')).toHaveValue('1'); + }); + it('should have the correct actions when edit enabled', async () => { + jest.spyOn(moduleApi, 'useFeature').mockReturnValue(mockShowCbcEdit); + pageTestingHelper.loadQuery(); + pageTestingHelper.renderPage(); + + expect(screen.getByText('Expand all')).toBeInTheDocument(); + expect(screen.getByText('Collapse all')).toBeInTheDocument(); + expect(screen.getByText('Quick edit')).toBeInTheDocument(); + }); + + it('expand and collapse all work as expected', () => { + pageTestingHelper.loadQuery(); + pageTestingHelper.renderPage(); + + const expandButton = screen.getByRole('button', { + name: 'Expand all', + }); + act(() => { + fireEvent.click(expandButton); + }); + + const collapseButton = screen.getByRole('button', { + name: 'Collapse all', + }); + act(() => { + fireEvent.click(collapseButton); + }); + // All accordions contain a table, so to find every collapsed portion we select them all + const allHiddenDivs = screen + .getAllByRole('table', { + hidden: true, + }) + .map((tableElement) => tableElement.parentElement); + + // attempt to find a div that would not be hidden + const isAllHidden = allHiddenDivs.find((section) => { + return section.style.display !== 'none'; + }); + // expect not to find one + expect(isAllHidden).toBeUndefined(); + }); +}); diff --git a/app/tests/pages/analyst/cbc/[cbcId]/cbcHistory.test.tsx b/app/tests/pages/analyst/cbc/[cbcId]/cbcHistory.test.tsx new file mode 100644 index 0000000000..f9266bcbe5 --- /dev/null +++ b/app/tests/pages/analyst/cbc/[cbcId]/cbcHistory.test.tsx @@ -0,0 +1,103 @@ +import CbcHistory from 'pages/analyst/cbc/[cbcId]/cbcHistory'; +import { screen } from '@testing-library/react'; +import compiledCbcHistoryQuery, { + cbcHistoryQuery, +} from '../../../../../__generated__/cbcHistoryQuery.graphql'; +import PageTestingHelper from '../../../../utils/pageTestingHelper'; + +const mockQueryPayload = { + Query() { + return { + cbcByRowId: { + projectNumber: 5555, + rowId: 1, + sharepointTimestamp: '2024-10-01T00:00:00.000Z', + cbcDataByCbcId: { + edges: [ + { + node: { + jsonData: { + phase: 2, + intake: 1, + errorLog: [], + highwayKm: null, + projectType: 'Transport', + reviewNotes: 'Qtrly Report: Progress 0.39 -> 0.38', + transportKm: 124, + lastReviewed: '2023-07-11T00:00:00.000Z', + otherFunding: 265000, + projectTitle: 'Project 1', + dateAnnounced: '2019-07-02T00:00:00.000Z', + projectNumber: 5555, + projectStatus: 'Reporting Complete', + federalFunding: 555555, + householdCount: null, + applicantAmount: 555555, + bcFundingRequest: 5555555, + projectLocations: 'Location 1', + milestoneComments: 'Requested extension to March 31, 2024', + proposedStartDate: '2020-07-01T00:00:00.000Z', + primaryNewsRelease: + 'https://www.canada.ca/en/innovation-science-economic-development/news/2019/07/rural-communities-in-british-columbia-will-benefit-from-faster-internet.html', + projectDescription: 'Description 1', + totalProjectBudget: 5555555, + announcedByProvince: 'YES', + dateAgreementSigned: '2021-02-24T00:00:00.000Z', + changeRequestPending: 'No', + currentOperatingName: 'Internet company 1', + federalFundingSource: 'ISED-CTI', + transportProjectType: 'Fibre', + indigenousCommunities: 5, + proposedCompletionDate: '2023-03-31T00:00:00.000Z', + constructionCompletedOn: null, + dateApplicationReceived: null, + reportingCompletionDate: null, + applicantContractualName: 'Internet company 1', + dateConditionallyApproved: '2019-06-26T00:00:00.000Z', + eightThirtyMillionFunding: 'No', + projectMilestoneCompleted: 0.5, + communitiesAndLocalesCount: 5, + connectedCoastNetworkDependant: 'NO', + nditConditionalApprovalLetterSent: 'YES', + bindingAgreementSignedNditRecipient: 'YES', + }, + sharepointTimestamp: '2024-10-01T00:00:00.000Z', + rowId: 1, + projectNumber: 5555, + updatedAt: '2024-10-01T00:00:00.000Z', + updatedBy: 'test', + }, + }, + ], + }, + }, + session: { + sub: '4e0ac88c-bf05-49ac-948f-7fd53c7a9fd6', + }, + }; + }, +}; + +const pageTestingHelper = new PageTestingHelper({ + pageComponent: CbcHistory, + compiledQuery: compiledCbcHistoryQuery, + defaultQueryResolver: mockQueryPayload, + defaultQueryVariables: { + rowId: 1, + }, +}); + +describe('Cbc History', () => { + beforeEach(() => { + pageTestingHelper.reinit(); + pageTestingHelper.setMockRouterValues({ + query: { cbcId: '1' }, + }); + }); + it('should have the placeholder text', async () => { + pageTestingHelper.loadQuery(); + pageTestingHelper.renderPage(); + + expect(screen.getByText('Under construction...')).toBeInTheDocument(); + }); +}); diff --git a/app/tests/pages/analyst/dashboard.test.tsx b/app/tests/pages/analyst/dashboard.test.tsx index 9b59d3f02d..c3eebbc7eb 100644 --- a/app/tests/pages/analyst/dashboard.test.tsx +++ b/app/tests/pages/analyst/dashboard.test.tsx @@ -92,11 +92,11 @@ const mockQueryPayload = { }, ], }, - allCbcProjects: { - nodes: [ + allCbcData: { + edges: [ { - jsonData: [ - { + node: { + jsonData: { phase: 2, intake: 1, errorLog: [], @@ -141,7 +141,11 @@ const mockQueryPayload = { nditConditionalApprovalLetterSent: 'YES', bindingAgreementSignedNditRecipient: 'YES', }, - { + }, + }, + { + node: { + jsonData: { phase: 2, intake: 1, errorLog: [], @@ -186,7 +190,11 @@ const mockQueryPayload = { nditConditionalApprovalLetterSent: 'YES', bindingAgreementSignedNditRecipient: 'YES', }, - { + }, + }, + { + node: { + jsonData: { phase: 2, intake: 1, errorLog: [], @@ -231,7 +239,7 @@ const mockQueryPayload = { nditConditionalApprovalLetterSent: 'YES', bindingAgreementSignedNditRecipient: 'YES', }, - ], + }, }, ], }, diff --git a/app/utils/isRouteAuthorized.ts b/app/utils/isRouteAuthorized.ts index 1221329626..d141bb21e6 100644 --- a/app/utils/isRouteAuthorized.ts +++ b/app/utils/isRouteAuthorized.ts @@ -15,6 +15,11 @@ const pagesAuthorization = [ isProtected: true, allowedRoles: ['ccbc_admin', 'ccbc_analyst'], }, + { + routePaths: ['/analyst/cbc/(.*)'], + isProtected: true, + allowedRoles: ['ccbc_admin', 'ccbc_analyst'], + }, { routePaths: ['/analyst/dashboard'], isProtected: true, diff --git a/db/data/e2e/001_cbc_project.sql b/db/data/e2e/001_cbc_project.sql index 68c67cd5e3..d3beea66ed 100644 --- a/db/data/e2e/001_cbc_project.sql +++ b/db/data/e2e/001_cbc_project.sql @@ -144,4 +144,55 @@ insert into ccbc_public.cbc_project( ]$$, '2024-01-01 16:28:11.006719-07', '2024-01-02 16:28:11.006719-07', '2024-01-02 16:28:11.006719-07'); +insert into ccbc_public.cbc(id, project_number, sharepoint_timestamp, created_at, updated_at) + overriding system value values (1, 5555, '2024-01-01 16:28:11.006719-07', '2024-01-02 16:28:11.006719-07', '2024-01-02 16:28:11.006719-07'); + +insert into ccbc_public.cbc_data(id, cbc_id, project_number, json_data, sharepoint_timestamp, created_at, updated_at) + overriding system value values (1, 1, 5555, + $${ + "phase": 2, + "intake": 1, + "errorLog": [], + "highwayKm": null, + "projectType": "Transport", + "reviewNotes": "Qtrly Report: Progress 0.39 -> 0.38", + "transportKm": 124, + "lastReviewed": "2023-07-11T00:00:00.000Z", + "otherFunding": 265000, + "projectTitle": "Project 1", + "dateAnnounced": "2019-07-02T00:00:00.000Z", + "projectNumber": 5555, + "projectStatus": "Reporting Complete", + "federalFunding": 555555, + "householdCount": null, + "applicantAmount": 555555, + "bcFundingRequest": 5555555, + "projectLocations": "Location 1", + "milestoneComments": "Requested extension to March 31, 2024", + "proposedStartDate": "2020-07-01T00:00:00.000Z", + "primaryNewsRelease": + "https://www.canada.ca/en/innovation-science-economic-development/news/2019/07/rural-communities-in-british-columbia-will-benefit-from-faster-internet.html", + "projectDescription": "Description 1", + "totalProjectBudget": 5555555, + "announcedByProvince": "YES", + "dateAgreementSigned": "2021-02-24T00:00:00.000Z", + "changeRequestPending": "No", + "currentOperatingName": "Internet company 1", + "federalFundingSource": "ISED-CTI", + "transportProjectType": "Fibre", + "indigenousCommunities": 5, + "proposedCompletionDate": "2023-03-31T00:00:00.000Z", + "constructionCompletedOn": null, + "dateApplicationReceived": null, + "reportingCompletionDate": null, + "applicantContractualName": "Internet company 1", + "dateConditionallyApproved": "2019-06-26T00:00:00.000Z", + "eightThirtyMillionFunding": "No", + "projectMilestoneCompleted": 0.5, + "communitiesAndLocalesCount": 5, + "connectedCoastNetworkDependant": "NO", + "nditConditionalApprovalLetterSent": "YES", + "bindingAgreementSignedNditRecipient": "YES" + }$$, '2024-01-01 16:28:11.006719-07', '2024-01-02 16:28:11.006719-07', '2024-01-02 16:28:11.006719-07'); + commit; diff --git a/db/deploy/tables/cbc.sql b/db/deploy/tables/cbc.sql new file mode 100644 index 0000000000..045b9eee04 --- /dev/null +++ b/db/deploy/tables/cbc.sql @@ -0,0 +1,45 @@ +-- Deploy ccbc:tables/cbc to pg + +begin; + +create table ccbc_public.cbc( + id integer primary key generated always as identity, + project_number integer not null unique, + sharepoint_timestamp timestamp with time zone default null +); + +select ccbc_private.upsert_timestamp_columns('ccbc_public', 'cbc'); + +create index cbc_project_number on ccbc_public.cbc(project_number); + +-- enable audit/history +select audit.enable_tracking('ccbc_public.cbc'::regclass); + +do +$grant$ +begin + +-- Grant ccbc_admin permissions +perform ccbc_private.grant_permissions('select', 'cbc', 'ccbc_admin'); +perform ccbc_private.grant_permissions('insert', 'cbc', 'ccbc_admin'); +perform ccbc_private.grant_permissions('update', 'cbc', 'ccbc_admin'); + +-- Grant ccbc_analyst permissions +perform ccbc_private.grant_permissions('select', 'cbc', 'ccbc_analyst'); +-- perform ccbc_private.grant_permissions('insert', 'cbc', 'ccbc_analyst'); +-- perform ccbc_private.grant_permissions('update', 'cbc', 'ccbc_analyst'); + +-- Grant ccbc_service_account permissions +perform ccbc_private.grant_permissions('select', 'cbc', 'ccbc_service_account'); +perform ccbc_private.grant_permissions('insert', 'cbc', 'ccbc_service_account'); +perform ccbc_private.grant_permissions('update', 'cbc', 'ccbc_service_account'); + +end +$grant$; + +comment on table ccbc_public.cbc is 'Table containing the data imported from the CBC projects excel file, by rows'; +comment on column ccbc_public.cbc.id is 'Unique ID for the row'; +comment on column ccbc_public.cbc.project_number is 'The project number, unique for each project'; +comment on column ccbc_public.cbc.sharepoint_timestamp is 'The timestamp of the last time the data was updated from sharepoint'; + +commit; diff --git a/db/deploy/tables/cbc_data.sql b/db/deploy/tables/cbc_data.sql new file mode 100644 index 0000000000..e5e58c9c97 --- /dev/null +++ b/db/deploy/tables/cbc_data.sql @@ -0,0 +1,44 @@ +-- Deploy ccbc:tables/cbc_data to pg + +begin; + +create table ccbc_public.cbc_data( + id integer primary key generated always as identity, + cbc_id integer references ccbc_public.cbc(id), + project_number integer references ccbc_public.cbc(project_number), + json_data jsonb not null default '{}'::jsonb, + sharepoint_timestamp timestamp with time zone default null +); + +select ccbc_private.upsert_timestamp_columns('ccbc_public', 'cbc_data'); + +do +$grant$ +begin + +-- Grant ccbc_admin permissions +perform ccbc_private.grant_permissions('select', 'cbc_data', 'ccbc_admin'); +perform ccbc_private.grant_permissions('insert', 'cbc_data', 'ccbc_admin'); +perform ccbc_private.grant_permissions('update', 'cbc_data', 'ccbc_admin'); + +-- Grant ccbc_analyst permissions +perform ccbc_private.grant_permissions('select', 'cbc_data', 'ccbc_analyst'); +-- perform ccbc_private.grant_permissions('insert', 'cbc_data', 'ccbc_analyst'); +-- perform ccbc_private.grant_permissions('update', 'cbc_data', 'ccbc_analyst'); + +-- Grant ccbc_service_account permissions +perform ccbc_private.grant_permissions('select', 'cbc_data', 'ccbc_service_account'); +perform ccbc_private.grant_permissions('insert', 'cbc_data', 'ccbc_service_account'); +perform ccbc_private.grant_permissions('update', 'cbc_data', 'ccbc_service_account'); + +end +$grant$; + +comment on table ccbc_public.cbc_data is 'Table containing the json data for cbc applications'; +comment on column ccbc_public.cbc_data.id is 'Unique ID for the cbc_data'; +comment on column ccbc_public.cbc_data.cbc_id is 'ID of the cbc application this cbc_data belongs to'; +comment on column ccbc_public.cbc_data.project_number is 'Column containing the project number the cbc application is from'; +comment on column ccbc_public.cbc_project.json_data is 'The data imported from the excel for that cbc project'; +comment on column ccbc_public.cbc_project.sharepoint_timestamp is 'The timestamp of the last time the data was updated from sharepoint'; + +commit; diff --git a/db/revert/tables/cbc.sql b/db/revert/tables/cbc.sql new file mode 100644 index 0000000000..77c52abf61 --- /dev/null +++ b/db/revert/tables/cbc.sql @@ -0,0 +1,7 @@ +-- Revert ccbc:tables/cbc from pg + +BEGIN; + +drop table if exists ccbc_public.cbc cascade; + +COMMIT; diff --git a/db/revert/tables/cbc_data.sql b/db/revert/tables/cbc_data.sql new file mode 100644 index 0000000000..3c501ac1bd --- /dev/null +++ b/db/revert/tables/cbc_data.sql @@ -0,0 +1,7 @@ +-- Revert ccbc:tables/cbc_data from pg + +BEGIN; + +drop table if exists ccbc_public.cbc_data cascade; + +COMMIT; diff --git a/db/sqitch.plan b/db/sqitch.plan index 5e12245fde..f418261572 100644 --- a/db/sqitch.plan +++ b/db/sqitch.plan @@ -562,3 +562,5 @@ tables/application_status_type_010_closed_to_not_selected 2024-05-01T15:54:58Z A @1.160.1 2024-05-15T16:41:31Z CCBC Service Account # release v1.160.1 tables/application_pending_change_request 2024-05-03T20:55:21Z ,,, # add application pending change request table @1.161.0 2024-05-15T17:59:55Z CCBC Service Account # release v1.161.0 +tables/cbc 2024-05-08T17:56:10Z Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> # add cbc projects table for individual cbc projects +tables/cbc_data 2024-05-08T18:08:06Z Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> # table to hold the json data for individual cbc projects diff --git a/db/test/unit/tables/cbc_data_test.sql b/db/test/unit/tables/cbc_data_test.sql new file mode 100644 index 0000000000..db8fb73bb8 --- /dev/null +++ b/db/test/unit/tables/cbc_data_test.sql @@ -0,0 +1,40 @@ +begin; + +select plan(10); + +-- Table exists +select has_table( + 'ccbc_public', 'cbc_data', + 'ccbc_public.cbc should exist and be a table' +); + +-- Columns +select has_column('ccbc_public', 'cbc_data', 'id','The table cbc_data has column id'); +select has_column('ccbc_public', 'cbc_data', 'json_data','The table cbc_data has column json_data'); +select has_column('ccbc_public', 'cbc_data', 'project_number','The table cbc_data has column project_number'); +select has_column('ccbc_public', 'cbc_data', 'cbc_id','The table cbc_data has column cbc_id'); +select has_column('ccbc_public', 'cbc_data', 'sharepoint_timestamp','The table cbc_data has column sharepoint_timestamp'); + +-- Privileges +select table_privs_are( + 'ccbc_public', 'cbc_data', 'ccbc_guest', ARRAY[]::text[], + 'ccbc_guest has no privileges from cbc_data table' +); + +select table_privs_are( + 'ccbc_public', 'cbc_data', 'ccbc_auth_user', ARRAY[]::text[], + 'ccbc_auth_user has no privileges from cbc_data table' +); + +select table_privs_are( + 'ccbc_public', 'cbc_data', 'ccbc_admin', ARRAY['SELECT', 'INSERT', 'UPDATE'], + 'ccbc_admin can select, insert and update from cbc_data table' +); + +select table_privs_are( + 'ccbc_public', 'cbc_data', 'ccbc_analyst', ARRAY['SELECT'], + 'ccbc_analyst can select from cbc_data table' +); + +select finish(); +rollback; diff --git a/db/test/unit/tables/cbc_test.sql b/db/test/unit/tables/cbc_test.sql new file mode 100644 index 0000000000..de79759ff3 --- /dev/null +++ b/db/test/unit/tables/cbc_test.sql @@ -0,0 +1,38 @@ +begin; + +select plan(8); + +-- Table exists +select has_table( + 'ccbc_public', 'cbc', + 'ccbc_public.cbc should exist and be a table' +); + +-- Columns +select has_column('ccbc_public', 'cbc', 'id','The table cbc has column id'); +select has_column('ccbc_public', 'cbc', 'project_number','The table cbc has column project_number'); +select has_column('ccbc_public', 'cbc', 'sharepoint_timestamp','The table cbc has column sharepoint_timestamp'); + +-- Privileges +select table_privs_are( + 'ccbc_public', 'cbc', 'ccbc_guest', ARRAY[]::text[], + 'ccbc_guest has no privileges from cbc table' +); + +select table_privs_are( + 'ccbc_public', 'cbc', 'ccbc_auth_user', ARRAY[]::text[], + 'ccbc_auth_user has no privileges from cbc table' +); + +select table_privs_are( + 'ccbc_public', 'cbc', 'ccbc_admin', ARRAY['SELECT', 'INSERT', 'UPDATE'], + 'ccbc_admin can select, insert and update from cbc table' +); + +select table_privs_are( + 'ccbc_public', 'cbc', 'ccbc_analyst', ARRAY['SELECT'], + 'ccbc_analyst can select from cbc table' +); + +select finish(); +rollback;